@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: 200%;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #232323;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 100px;
}
@media (max-width: 1250px) {
  :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: 1250px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .wrapper {
    max-width: 600px;
    padding: 0 5%;
  }
}

.section_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #232323;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 150%;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 clamp(12px, 5.492px + 2.034vw, 36px);
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
  }
}

.btn::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background-color: #C6E8FF;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  top: -17px;
  right: -23px;
}
@media (max-width: 768px) {
  .btn::after {
    width: 48px;
    height: 48px;
    top: -12px;
    right: -20px;
  }
}

@media (min-width: 768px) {
  .btn:hover::after {
    width: 96px;
    height: 96px;
    top: -31px;
    right: -37px;
  }
}

.btn_center .btn {
  margin: 0 auto;
}

.btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(8px, 5.831px + 0.678vw, 16px);
}

.btn span::after {
  content: "";
  position: relative;
  width: 77px;
  height: 14px;
  background: url(../images/common/btn_arrowNavyblue.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn span::after {
    width: 49px;
    height: 9px;
  }
}

.contact_form_btn {
  position: relative;
  display: block;
  max-width: 312px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.047em;
  padding: clamp(12px, 8.746px + 1.017vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact_form_btn {
    padding: 24px clamp(12px, 8.746px + 1.017vw, 24px);
  }
}

.contact_form_btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 96, 174)), to(rgb(0, 181, 226)));
  background: linear-gradient(90deg, rgb(0, 96, 174) 0%, rgb(0, 181, 226) 100%);
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  border-radius: 8px;
}

.contact_form_btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  border-radius: 8px;
  opacity: 0;
}

.contact_form_btn span {
  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: 8px;
  z-index: 1;
}

.contact_form_btn span::before {
  content: "";
  position: relative;
  display: block;
  width: 36px;
  height: 23px;
  background: url(../images/common/icon_mailWhite.svg) no-repeat center center/contain;
}

@media (min-width: 768px) {
  .contact_form_btn:hover::before {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .contact_form_btn:hover::after {
    opacity: 1;
  }
}

.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 #232323;
  margin: auto;
}

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

.color_blue {
  color: #0060AE;
}

.body.is_open {
  overflow: hidden;
}

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

.header.header_fixed {
  height: 100px;
  -webkit-box-shadow: 0 4px 17px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 17px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1250px) {
  .header.header_fixed {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
    padding: 0;
  }
}

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

.header_inner {
  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;
  padding-top: 24px;
}
@media (max-width: 1250px) {
  .header_inner {
    padding: 0 100px 0 25px;
  }
}
@media (max-width: 768px) {
  .header_inner {
    height: inherit;
    padding: 0 60px 0 0;
  }
}

.header_lead {
  position: relative;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media (max-width: 768px) {
  .header_lead {
    display: none;
  }
}

.header_logo {
  position: relative;
  max-width: clamp(300px, 252.814px + 14.746vw, 474px);
  width: 100%;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 33px;
  left: 0;
  z-index: 1;
}
@media (max-width: 1250px) {
  .header_logo {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: 100%;
    max-width: 350px;
    margin-inline: 0;
    height: inherit;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    margin-top: 13px;
  }
}

.header_logo a {
  display: inline-block;
}

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

.header_nav {
  max-width: 567px;
  width: 100%;
}
@media (max-width: 1250px) {
  .header_nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_inquiry {
  position: relative;
  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: clamp(12px, 8.746px + 1.017vw, 24px);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.header_tel {
  position: relative;
  max-width: clamp(180px, 158.034px + 6.864vw, 261px);
  width: 100%;
}

.header_tel_hour {
  position: relative;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.04em;
  margin-top: 5px;
  text-align: right;
}

.header_contact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header_contact_btn {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.047em;
  padding: clamp(12px, 8.746px + 1.017vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_fixed .header_contact_btn {
  padding: clamp(8px, 6.373px + 0.508vw, 14px);
}

.header_contact_btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 96, 174)), to(rgb(0, 181, 226)));
  background: linear-gradient(90deg, rgb(0, 96, 174) 0%, rgb(0, 181, 226) 100%);
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  border-radius: 8px;
}

.header_contact_btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  border-radius: 8px;
  opacity: 0;
}

.header_contact_btn span {
  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: 8px;
  z-index: 1;
}

.header_contact_btn span::before {
  content: "";
  position: relative;
  display: block;
  width: 36px;
  height: 23px;
  background: url(../images/common/icon_mailWhite.svg) no-repeat center center/contain;
}

@media (min-width: 768px) {
  .header_contact_btn:hover::before {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .header_contact_btn:hover::after {
    opacity: 1;
  }
}

.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(16px, 11.661px + 1.356vw, 32px);
  margin-top: 32px;
}

.header_list_link {
  position: relative;
  display: inline-block;
  color: #232323;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.08em;
}

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

.header_list_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background-color: #0060AE;
  left: 0;
  bottom: -3px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

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

.header_fixed_list {
  display: none;
}

/* header_list_modal */
.header_list_modal_wrap {
  position: relative;
}

.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;
}

@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 */
.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: #0060AE;
}
@media (max-width: 1250px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 60px;
    height: 60px;
  }
}

.header_hamburger.is_open {
  background-color: #002E52;
}

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

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

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

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

.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;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_hamburger_name {
    font-size: 12px;
    bottom: 0;
  }
}

.header_drawer {
  padding: 70px 0;
  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(198, 232, 255, 0.95);
}

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

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

.header_drawer_list {
  border-bottom: 1px solid #232323;
}

.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;
}

.header_drawer_list_menus {
  padding-bottom: 10px;
}

.header_drawer_list_menu a {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 12px 10px;
}

.header_fixed .header_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
}

.header_fixed .header_lead,
.header_fixed .header_inquiry {
  height: 0;
  opacity: 0;
}

.header_fixed .header_logo {
  max-width: clamp(270px, 234.746px + 11.017vw, 400px);
  margin-top: 0;
}
@media (max-width: 1250px) {
  .header_fixed .header_logo {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .header_fixed .header_logo {
    margin-top: 15px;
  }
}

.header_fixed .header_nav {
  max-width: unset;
}

.header_fixed .header_lists {
  margin-top: 0;
}

.header_fixed .header_fixed_list {
  display: block;
}

.header_fixed .header_list_contact {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 700;
  padding: 28px 15px 12px;
}

.header_fixed .header_list_contact::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 96, 174)), to(rgb(0, 181, 226)));
  background: linear-gradient(90deg, rgb(0, 96, 174) 0%, rgb(0, 181, 226) 100%);
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.header_fixed .header_list_contact::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0060AE;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  opacity: 0;
}

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

.header_fixed .header_list_contact span::before {
  content: "";
  position: relative;
  display: block;
  width: 36px;
  height: 23px;
  background: url(../images/common/icon_mailWhite.svg) no-repeat center center/contain;
  margin: 0 auto 5px;
}

@media (min-width: 768px) {
  .header_fixed .header_list_contact:hover::before {
    width: 0;
  }
}

@media (min-width: 768px) {
  .header_fixed .header_list_contact:hover::after {
    opacity: 1;
  }
}

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

/* top - top_mw
------------------------------ */
.top_mw_inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 1250px) {
  .top_mw_inner {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .top_mw_inner {
    margin-top: 60px;
  }
}

.top_mw_content_wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1250px) {
  .top_mw_content_wrapper {
    max-height: unset;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    top: 40px;
  }
}

.top_mw_content_wrapper .wrapper {
  margin: 0 auto;
}

.top_mw_slick_content_wrapper {
  position: relative;
  max-width: clamp(400px, 334.915px + 20.339vw, 640px);
  width: 100%;
}

/* top - common
------------------------------ */
.top_section_title_en {
  position: relative;
  color: #0060AE;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.top_section_title_ja {
  position: relative;
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-top: 24px;
}
@media (max-width: 1250px) {
  .top_section_title_ja {
    font-size: clamp(18px, 14.203px + 1.186vw, 32px);
    letter-spacing: 0.05em;
  }
}
@media (max-width: 768px) {
  .top_section_title_ja {
    font-size: clamp(24px, 21.831px + 0.678vw, 32px);
    margin-top: 16px;
  }
}

.top_section_title_center {
  text-align: center;
}

.top_section_title_inner {
  position: relative;
  display: inline-block;
}

.top_section_title_inner::before,
.top_section_title_inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 52px;
  height: 65px;
  background: url(../images/common/oblique_lineGreen.svg) no-repeat center center/contain;
}

.top_section_title_inner::before {
  top: -20px;
  left: -64px;
}

.top_section_title_inner::after {
  background-image: url(../images/common/oblique_lineBlue.svg);
  right: -65px;
  bottom: -25px;
}

/* top - top_about
------------------------------ */
.top_about {
  position: relative;
  padding-top: 120px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .top_about {
    padding-top: 76px;
  }
}

.top_about::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  background: url(../images/common/illust_townscapeCyan.png) no-repeat center center/contain;
  margin-top: 76px;
}
@media (max-width: 768px) {
  .top_about::after {
    height: 50px;
    margin-top: 32px;
    background-size: cover;
  }
}

.top_about_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -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;
}
@media (max-width: 768px) {
  .top_about_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 54px;
  }
}

.top_about_mainpic {
  position: relative;
  width: 100vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .top_about_mainpic {
    width: 105%;
    margin-right: -5%;
  }
}

.top_about_content {
  position: relative;
  max-width: clamp(620px, 582.034px + 11.864vw, 760px);
  width: 100%;
}
@media (max-width: 1250px) {
  .top_about_content {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .top_about_content {
    max-width: unset;
    width: 100%;
  }
}

.top_about_title_ja {
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  line-height: 160%;
}
@media (max-width: 1250px) {
  .top_about_title_ja {
    font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  }
}
@media (max-width: 768px) {
  .top_about_title_ja {
    font-size: clamp(20px, 17.831px + 0.678vw, 28px);
    line-height: 130%;
    letter-spacing: 0.1em;
  }
}

.top_about_text {
  position: relative;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .top_about_text {
    font-size: 14px;
    line-height: 180%;
    margin-top: 16px;
  }
}

.top_about_btn {
  margin-top: 40px;
}

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

.top_service_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 11.661px + 1.356vw, 32px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_service_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top_service_item {
  position: relative;
  max-width: clamp(420px, 375.525px + 13.898vw, 584px);
  width: 100%;
}
@media (max-width: 768px) {
  .top_service_item {
    margin: 0 auto;
  }
}

.top_service_item a {
  position: relative;
  display: block;
  height: 100%;
  padding: clamp(16px, 11.661px + 1.356vw, 32px);
  background-color: #fff;
  border-radius: 8px;
  top: 0;
}

.top_service_item a::after {
  content: "";
  position: absolute;
  display: block;
  width: 77px;
  height: 14px;
  background: url(../images/common/btn_arrowNavyblue.svg) no-repeat center center/contain;
  right: clamp(16px, 11.661px + 1.356vw, 32px);
  bottom: clamp(16px, 11.661px + 1.356vw, 32px);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .top_service_item a::after {
    width: 49px;
    height: 9px;
  }
}

@media (min-width: 768px) {
  .top_service_item a:hover {
    -webkit-box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
            box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
  }
}

.top_service_item a:hover::after {
  right: clamp(6px, 1.661px + 1.356vw, 22px);
}

.top_service_item_img {
  overflow: hidden;
  border-radius: 8px;
}

.top_service_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 520/368;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

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

.top_service_item_title {
  position: relative;
  margin-top: 24px;
  padding-left: clamp(20px, 14.576px + 1.695vw, 40px);
}
@media (max-width: 768px) {
  .top_service_item_title {
    margin-top: 16px;
  }
}

.top_service_item_title::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 100%;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 96, 174)), to(rgb(0, 181, 226)));
  background: linear-gradient(180deg, rgb(0, 96, 174) 0%, rgb(0, 181, 226) 100%);
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .top_service_item_title::before {
    width: 7px;
  }
}

.top_service_item_title_ja {
  position: relative;
  color: #002E52;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
}
@media (max-width: 1250px) {
  .top_service_item_title_ja {
    font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  }
}

.top_service_item_content {
  position: relative;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_service_item_content {
    margin-top: 8px;
  }
}

.top_service_item_content p {
  letter-spacing: 0.04em;
}

/* top - top_news
------------------------------ */
.top_news {
  position: relative;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 96, 174)), color-stop(40%, rgb(0, 96, 174)), color-stop(40%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(0, 96, 174) 0%, rgb(0, 96, 174) 40%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 100%);
  padding: 120px 0;
}
@media (max-width: 768px) {
  .top_news {
    padding: 60px 0 0;
    background: #0060AE;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 96, 174)), color-stop(55%, rgb(0, 96, 174)), color-stop(55%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: linear-gradient(180deg, rgb(0, 96, 174) 0%, rgb(0, 96, 174) 55%, rgb(255, 255, 255) 55%, rgb(255, 255, 255) 100%);
  }
}

.top_news_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);
}
@media (max-width: 768px) {
  .top_news_wrapper {
    -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;
  }
}

.top_news_title_en, .top_news_title_ja {
  color: #fff;
}
@media (max-width: 768px) {
  .top_news_title_en, .top_news_title_ja {
    text-align: center;
  }
}

.top_news_content {
  position: relative;
  max-width: clamp(720px, 658.169px + 19.322vw, 948px);
  width: 100%;
  max-height: 443px;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px clamp(24px, 15.322px + 2.712vw, 56px);
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #C4C4C4 red;
}
@media (max-width: 1250px) {
  .top_news_content {
    max-width: clamp(600px, 567.458px + 10.169vw, 720px);
  }
}
@media (max-width: 768px) {
  .top_news_content {
    max-width: unset;
    max-height: 240px;
    padding: clamp(16px, 13.831px + 0.678vw, 24px) clamp(16px, 11.661px + 1.356vw, 32px);
    -webkit-box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
            box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
  }
}

.top_news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(16px, 11.932px + 1.271vw, 31px);
  padding: 32px 0;
  border-bottom: 1px solid #D7D7D7;
  scroll-snap-align: center;
}
@media (max-width: 1250px) {
  .top_news_item {
    gap: clamp(8px, 3.661px + 1.356vw, 24px);
  }
}
@media (max-width: 768px) {
  .top_news_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.top_news_item_date {
  color: #0060AE;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.05em;
}

.top_news_item_title {
  position: relative;
  max-width: clamp(500px, 448.475px + 16.102vw, 690px);
  width: 100%;
  line-height: 180%;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .top_news_item_title {
    max-width: unset;
  }
}

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

.recruit_bnr_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../images/common/recruit_bnr_bg.jpg) no-repeat left top/60% auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(15px, 10.119px + 1.525vw, 33px);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  top: 0;
}
@media (max-width: 1250px) {
  .recruit_bnr_wrapper {
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .recruit_bnr_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    background: transparent;
  }
}

@media (min-width: 768px) {
  .recruit_bnr_wrapper:hover {
    opacity: 0.8;
    top: -5px;
    -webkit-box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
            box-shadow: 3px 3px 10px rgba(35, 35, 35, 0.3);
  }
}

.recruit_bnr_img {
  position: relative;
  max-width: clamp(400px, 367.458px + 10.169vw, 520px);
}
@media (max-width: 1250px) {
  .recruit_bnr_img {
    max-width: unset;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .recruit_bnr_img {
    width: 100%;
  }
}

.recruit_bnr_contents {
  position: relative;
  padding: clamp(42px, 33.322px + 2.712vw, 74px) 0 0 clamp(44px, 32.068px + 3.729vw, 88px);
}
@media (max-width: 1250px) {
  .recruit_bnr_contents {
    padding: clamp(42px, 33.322px + 2.712vw, 74px) 0 clamp(15px, 10.932px + 1.271vw, 30px) clamp(22px, 16.034px + 1.864vw, 44px);
  }
}
@media (max-width: 768px) {
  .recruit_bnr_contents {
    padding: 40px 5% 30px;
    background: url(../images/common/recruit_bnr_bg.jpg) no-repeat left bottom/cover;
  }
}

.recruit_bnr_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #002E52;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  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: 0 clamp(12px, 5.492px + 2.034vw, 36px);
}
@media (max-width: 768px) {
  .recruit_bnr_title {
    font-size: 22px;
  }
}

.recruit_bnr_title_ja {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(32px, 25.492px + 2.034vw, 56px);
}
@media (max-width: 768px) {
  .recruit_bnr_title_ja {
    gap: 0 clamp(16px, 11.661px + 1.356vw, 32px);
  }
}

.recruit_bnr_title_ja::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  top: -17px;
  right: -23px;
}
@media (max-width: 768px) {
  .recruit_bnr_title_ja::before {
    width: 48px;
    height: 48px;
    top: -12px;
    right: -17px;
  }
}

@media (min-width: 768px) {
  .recruit_bnr_wrapper:hover .recruit_bnr_title_ja::before {
    width: 96px;
    height: 96px;
    top: -31px;
    right: -37px;
  }
}
@media (max-width: 768px) {
  .recruit_bnr_wrapper:hover .recruit_bnr_title_ja::before {
    width: 48px;
    height: 48px;
    top: -12px;
    right: -17px;
  }
}

.recruit_bnr_title_ja::after {
  content: "";
  position: relative;
  width: 77px;
  height: 14px;
  background: url(../images/common/btn_arrowNavyblue.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit_bnr_title_ja::after {
    width: 49px;
    height: 9px;
  }
}

.recruit_bnr_text {
  position: relative;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.08em;
  margin-top: 40px;
}
@media (max-width: 1250px) {
  .recruit_bnr_text {
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .recruit_bnr_text {
    margin-top: 30px;
  }
}

.recruit_bnr_en {
  position: absolute;
  color: #fff;
  font-size: clamp(60px, 42.373px + 5.508vw, 125px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  left: 0;
  bottom: -15px;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .recruit_bnr_en {
    left: auto;
    right: 0;
    bottom: -10px;
  }
}

/* cta
------------------------------ */
.cta {
  position: relative;
  margin-top: 152px;
  padding: 80px 0;
  background: url(../images/common/cta_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .cta {
    margin-top: 70px;
    padding: 40px 0;
  }
}

.cta_title_en {
  position: relative;
  color: #fff;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}

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

.cta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 16.746px + 1.017vw, 32px);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .cta_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
}

.cta_contact {
  position: relative;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 48px 0;
}
@media (max-width: 768px) {
  .cta_contact {
    padding: 24px 5%;
  }
}

.cta_contact_title {
  position: relative;
  color: #002E52;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.08em;
}

.cta_contact_tel {
  position: relative;
  max-width: clamp(250px, 229.39px + 6.441vw, 326px);
  width: 100%;
  margin: 24px auto 0;
}
@media (max-width: 768px) {
  .cta_contact_tel {
    margin: 16px auto 0;
  }
}

.cta_contact_hour {
  position: relative;
  line-height: 145%;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .cta_contact_hour {
    margin-top: 10px;
  }
}

.cta_mail {
  position: relative;
  text-align: center;
  padding: 40px 0;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cta_mail {
    padding: 24px 5%;
  }
}

.cta_mail_contact {
  position: relative;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .cta_mail_contact {
    margin-top: 12px;
  }
}

.cta_contact_hour {
  position: relative;
  line-height: 145%;
  margin-top: 8px;
}

/* sub
------------------------------ */
.section_maintitle {
  position: relative;
  max-height: 350px;
}
@media (max-width: 768px) {
  .section_maintitle {
    max-height: unset;
  }
}

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

.section_maintitle_img {
  position: relative;
  width: 100vw;
  max-height: 350px;
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0 0 0 8px;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .section_maintitle_img {
    max-height: 250px;
  }
}
@media (max-width: 768px) {
  .section_maintitle_img {
    width: 111%;
    max-height: 120px;
    height: auto;
    margin-right: 0;
    border-radius: 0;
  }
}

.section_maintitle_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 860/350;
}
@media (max-width: 1250px) {
  .section_maintitle_img img {
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .section_maintitle_img img {
    height: 120px;
  }
}

.section_maintitle_contents {
  position: relative;
  width: 40%;
  z-index: 1;
}
@media (max-width: 1250px) {
  .section_maintitle_contents {
    max-width: 500px;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .section_maintitle_contents {
    width: 100%;
    padding: 16px 0 0;
  }
}

.section_maintitle_en {
  position: relative;
  color: #0060AE;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .section_maintitle_en {
    font-size: 14px;
  }
}

.section_maintitle_ja {
  position: relative;
  color: #002E52;
  font-size: clamp(24px, 17.492px + 2.034vw, 48px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.12em;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .section_maintitle_ja {
    font-size: 24px;
    margin-top: 5px;
  }
}

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

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

.subsection_title_ja::after {
  content: "";
  position: relative;
  display: block;
  width: clamp(35px, 25.508px + 2.966vw, 70px);
  height: 5px;
  background-color: #0060AE;
  margin: 32px auto 0;
}
@media (max-width: 768px) {
  .subsection_title_ja::after {
    margin-top: 16px;
  }
}

.subsection_subtitle {
  position: relative;
  padding: 8px 0 8px 40px;
}
@media (max-width: 768px) {
  .subsection_subtitle {
    padding: 4px 0 4px 25px;
  }
}

.subsection_subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 100%;
  background: #0060AE;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 96, 174)), to(rgb(0, 181, 226)));
  background: linear-gradient(180deg, rgb(0, 96, 174) 0%, rgb(0, 181, 226) 100%);
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .subsection_subtitle::before {
    width: 7px;
  }
}

.subsection_subtitle_ja {
  position: relative;
  color: #002E52;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
}

.section_internal_link {
  position: relative;
  max-width: 290px;
  width: 100%;
}

.section_internal_link .link {
  position: relative;
  display: block;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.04em;
  padding-bottom: 15px;
  border-bottom: 1px solid #232323;
}

.section_internal_link .link::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #0060AE;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  left: 0;
  bottom: 0;
}

.section_internal_link .link::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/common/arrow_bottomBlack.svg) no-repeat center center/contain;
  right: 0;
  bottom: 13px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.section_internal_link .link:hover {
  color: #0060AE;
}

@media (min-width: 768px) {
  .section_internal_link .link:hover::before {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .section_internal_link .link:hover::after {
    background-image: url(../images/common/arrow_bottomBlue.svg);
    bottom: 8px;
  }
}

/* bread crumb
------------------------------ */
.bread_crumb {
  position: relative;
  width: 100%;
}

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

.breadcrumb_inner br {
  display: none;
}

.breadcrumb_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
  letter-spacing: 0.08em;
}

.breadcrumb_item {
  position: relative;
  font-size: 12px;
}

.breadcrumb_item::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 5px;
  height: 9px;
  margin: 0 8px;
  background: url(../images/common/arrow_rightBlue.svg) no-repeat center center/contain;
}

.breadcrumb_item_last::after {
  display: none;
}

.breadcrumb_item a {
  color: #0060AE;
  font-weight: 700;
}

.breadcrumb_item a::after {
  border-color: #0060AE;
}

/* service
------------------------------ */
.service_strength_main {
  position: relative;
  padding: 80px 0 152px;
  background: url(../images/service/service_strength_bg.jpg) no-repeat right bottom/100% auto;
}
@media (max-width: 768px) {
  .service_strength_main {
    padding: 56px 0 80px;
  }
}

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

.service_strength_subtitle {
  position: relative;
  font-size: clamp(20px, 17.831px + 0.678vw, 28px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .service_strength_subtitle {
    font-size: 18px;
  }
}

.service_strength_text {
  position: relative;
  line-height: 180%;
  letter-spacing: 0.1em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .service_strength_text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.service_strength_text + .service_strength_text {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .service_strength_text + .service_strength_text {
    margin-top: 16px;
  }
}

.service_strength_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 64px;
}
@media (max-width: 768px) {
  .service_strength_btns {
    -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;
    margin-top: 32px;
    gap: 30px;
  }
}

.service_strength_rm {
  position: relative;
  padding-top: 152px;
}
@media (max-width: 768px) {
  .service_strength_rm {
    padding-top: 80px;
  }
}

.service_strength_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;
  gap: 20px;
}
@media (max-width: 768px) {
  .service_strength_group_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service_strength_group_img {
  position: relative;
  max-width: clamp(260px, 230.169px + 9.322vw, 370px);
  width: 100%;
}
@media (max-width: 768px) {
  .service_strength_group_img {
    max-width: unset;
    border-radius: 8px;
    overflow: hidden;
  }
}

.service_strength_group_contents {
  position: relative;
  max-width: clamp(550px, 493.051px + 17.797vw, 760px);
  width: 100%;
}

.service_strength_group_text {
  position: relative;
  line-height: 200%;
  letter-spacing: 0.04em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .service_strength_group_text {
    margin-top: 24px;
  }
}

.service_strength_group_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(12px, 8.746px + 1.017vw, 24px) clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 48px;
}
@media (max-width: 1250px) {
  .service_strength_group_items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .service_strength_group_items {
    grid-template-columns: 1fr 1fr;
    gap: 12px clamp(12px, 9.831px + 0.678vw, 20px);
    margin-top: 24px;
  }
}

.service_strength_group_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .service_strength_group_item {
    font-size: 14px;
    gap: 4px;
  }
}

.service_strength_group_item::before {
  content: "";
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  background-color: #0060AE;
  border-radius: 50%;
}

.service_strength_group_btn {
  margin-top: 85px;
}
@media (max-width: 768px) {
  .service_strength_group_btn {
    margin-top: 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.service_strength_rc .service_strength_group_wrapper {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 0.5px solid #232323;
}
@media (max-width: 768px) {
  .service_strength_rc .service_strength_group_wrapper {
    margin-top: 40px;
    padding-top: 40px;
  }
}

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

.service_products_outline {
  position: relative;
  line-height: 180%;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .service_products_outline {
    margin-top: 20px;
  }
}

.service_products_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(16px, 11.661px + 1.356vw, 32px);
  margin-top: 64px;
}
@media (max-width: 1250px) {
  .service_products_items {
    gap: clamp(16px, 11.661px + 1.356vw, 32px) 2%;
  }
}
@media (max-width: 768px) {
  .service_products_items {
    margin-top: 32px;
    gap: clamp(16px, 11.661px + 1.356vw, 32px);
  }
}

.service_products_item {
  position: relative;
  max-width: clamp(460px, 426.373px + 10.508vw, 584px);
  width: 100%;
  padding: clamp(20px, 14.576px + 1.695vw, 40px) clamp(20px, 14.576px + 1.695vw, 40px) clamp(32px, 25.492px + 2.034vw, 56px);
  border-radius: 8px;
  background-color: #fff;
}
@media (max-width: 1250px) {
  .service_products_item {
    max-width: unset;
    width: 49%;
  }
}
@media (max-width: 768px) {
  .service_products_item {
    max-width: clamp(460px, 426.373px + 10.508vw, 584px);
    width: 100%;
    margin: 0 auto;
  }
}

.service_products_item_area {
  max-width: unset;
}

.service_products_item_img {
  position: relative;
  margin-top: 24px;
}

.service_products_item_content {
  position: relative;
  margin-top: 24px;
}

.service_products_item_content p {
  line-height: 160%;
  letter-spacing: 0.1em;
}

.service_products_item_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .service_products_item_lists {
    margin-top: 16px;
  }
}

.service_products_item_list_parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .service_products_item_list_parent {
    font-size: 13px;
    gap: 5px;
  }
}

.service_products_item_list_parent::before {
  content: "";
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  background-color: #0060AE;
  border-radius: 50%;
}

.service_products_item_list_parent + .service_products_item_list_parent {
  margin-top: 8px;
}

.service_products_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(20px, 14.576px + 1.695vw, 40px);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .service_products_item_wrapper {
    -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;
  }
}

.service_products_item_area .service_products_item_img {
  max-width: clamp(280px, 234.441px + 14.237vw, 448px);
  margin-top: 0;
}
@media (max-width: 768px) {
  .service_products_item_area .service_products_item_img {
    margin: 0 auto;
  }
}

.service_products_item_area .service_products_item_content {
  max-width: clamp(460px, 413.356px + 14.576vw, 632px);
  margin-top: 0;
}

.service_products_item_column {
  position: relative;
  margin-top: 24px;
}

.service_products_item_areaname {
  position: relative;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}

.service_products_item_areas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px clamp(16px, 13.831px + 0.678vw, 24px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service_products_item_areas {
    gap: 8px;
  }
}

.service_products_item_area {
  position: relative;
  line-height: 130%;
  letter-spacing: 0.1em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* about
------------------------------ */
.about_greeting {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .about_greeting {
    margin-top: 56px;
  }
}

.about_greeting_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -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;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .about_greeting_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 38px;
  }
}

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

.about_greeting_contents {
  position: relative;
  max-width: clamp(660px, 612.542px + 14.831vw, 835px);
  width: 100%;
  margin: clamp(40px, 29.153px + 3.39vw, 80px) auto 0;
}

.about_greeting_text {
  position: relative;
  line-height: 200%;
  letter-spacing: 0.05em;
}

.about_greeting_text + .about_greeting_text {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .about_greeting_text + .about_greeting_text {
    margin-top: 16px;
  }
}

.about_greeting_name {
  position: relative;
  margin-top: 42px;
  text-align: right;
}
@media (max-width: 768px) {
  .about_greeting_name {
    margin-top: 24px;
  }
}

.about_greeting_name_company {
  position: relative;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  line-height: 100%;
  letter-spacing: 0.05em;
}

.about_greeting_name_title {
  position: relative;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.about_greeting_name_title span {
  position: relative;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08em;
  margin-left: 16px;
}

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

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

.about_outline_figure dl {
  display: grid;
  border-top: 1px solid #0060AE;
  border-right: 1px solid #0060AE;
  grid-template-columns: clamp(160px, 143.729px + 5.085vw, 220px) 1fr;
}
@media (max-width: 768px) {
  .about_outline_figure dl {
    grid-template-columns: 1fr;
    border-right: 0;
  }
}

.about_outline_figure dl dt {
  color: #fff;
  line-height: 150%;
  letter-spacing: 0.08em;
  padding: 24px 20px;
  border-bottom: 1px solid #fff;
  background-color: #0060AE;
}
@media (max-width: 768px) {
  .about_outline_figure dl dt {
    padding: 3% 5%;
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .about_outline_figure dl dt:nth-child(n+2) {
    margin-top: 10px;
  }
}

.about_outline_figure dl dt:nth-last-child(2) {
  border-bottom-color: #0060AE;
}

.about_outline_figure dl dd {
  line-height: 150%;
  letter-spacing: 0.05em;
  padding: 24px 20px;
  border-bottom: 1px solid #0060AE;
}
@media (max-width: 768px) {
  .about_outline_figure dl dd {
    padding: 5%;
    border-left: 1px solid #0060AE;
    border-right: 1px solid #0060AE;
  }
}

.about_outline_figure_column + .about_outline_figure_column {
  position: relative;
  margin-top: 10px;
}

.about_outline_figure_subtitle {
  position: relative;
  font-weight: 700;
}

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

.about_outline_permit_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(16px, 11.661px + 1.356vw, 32px);
}
@media (max-width: 1250px) {
  .about_outline_permit_lists {
    gap: clamp(16px, 11.661px + 1.356vw, 32px) 2%;
  }
}
@media (max-width: 768px) {
  .about_outline_permit_lists {
    margin-top: 20px;
    gap: clamp(16px, 11.661px + 1.356vw, 32px);
  }
}

.about_outline_permit_list {
  position: relative;
  max-width: clamp(380px, 324.678px + 17.288vw, 584px);
  width: 100%;
  text-align: center;
  padding: clamp(16px, 11.661px + 1.356vw, 32px);
  background-color: #F7F7F7;
}
@media (max-width: 1250px) {
  .about_outline_permit_list {
    max-width: unset;
    width: 49%;
  }
}
@media (max-width: 768px) {
  .about_outline_permit_list {
    max-width: unset;
    width: 100%;
    padding: 8% 5%;
  }
}

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

.about_outline_permit_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .about_outline_permit_items {
    margin-top: 20px;
  }
}

.about_outline_permit_item {
  position: relative;
  max-width: 96px;
  width: 100%;
}
@media (max-width: 768px) {
  .about_outline_permit_item {
    max-width: 89px;
  }
}

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

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

.about_outline_permit_pdf {
  position: relative;
  top: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .about_outline_permit_item a:hover .about_outline_permit_pdf {
    top: -5px;
  }
}

.about_outline_permit_item_area {
  position: relative;
  line-height: 130%;
  letter-spacing: 0.05em;
}

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

.about_outline_access_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about_outline_access_lists {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

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

.about_outline_access_list_subtitle {
  position: relative;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.about_outline_access_list_text {
  position: relative;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.about_outline_access_list_ggmap {
  position: relative;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .about_outline_access_list_ggmap {
    margin-top: 16px;
  }
}

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

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

.about_history_figure dl {
  display: grid;
  grid-template-columns: 197px 1fr;
  border-top: 1px solid #232323;
}
@media (max-width: 768px) {
  .about_history_figure dl {
    grid-template-columns: 1fr;
  }
}

.about_history_figure dl dt {
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  padding: 24px 0;
  border-bottom: 1px solid #232323;
}
@media (max-width: 768px) {
  .about_history_figure dl dt {
    padding: 18px 5% 0;
    border-bottom: 0;
  }
}

.about_history_figure dl dd {
  line-height: 130%;
  letter-spacing: 0;
  padding: 24px clamp(30px, 21.864px + 2.542vw, 60px);
  border-bottom: 1px solid #232323;
}
@media (max-width: 768px) {
  .about_history_figure dl dd {
    padding: 8px 5% 18px;
  }
}

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

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

.about_facilities_group_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 40px;
  gap: 16px;
}
@media (max-width: 768px) {
  .about_facilities_group_items {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 15px 2%;
  }
}

.about_facilities_group_cap {
  position: relative;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* recruit
------------------------------ */
.recruit_message {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .recruit_message {
    margin-top: 58px;
  }
}

.recruit_message_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;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .recruit_message_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
}

.recruit_message_img {
  position: relative;
  max-width: clamp(220px, 176.61px + 13.559vw, 380px);
  width: 100%;
}
@media (max-width: 768px) {
  .recruit_message_img {
    max-width: 380px;
    margin: 0 auto;
  }
}

.recruit_message_contents {
  position: relative;
  max-width: clamp(600px, 557.695px + 13.22vw, 756px);
  width: 100%;
}

.recruit_message_text {
  position: relative;
  line-height: 200%;
  letter-spacing: 0.04em;
}

.recruit_message_text + .recruit_message_text {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .recruit_message_text + .recruit_message_text {
    margin-top: 16px;
  }
}

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

.recruit_advantage_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 80px;
  gap: clamp(8px, 3.661px + 1.356vw, 24px);
}
@media (max-width: 768px) {
  .recruit_advantage_items {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
}

.recruit_advantage_item {
  position: relative;
  max-width: clamp(260px, 226.373px + 10.508vw, 384px);
  width: 100%;
  border-radius: 8px;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit_advantage_item {
    max-width: unset;
    margin: 0 auto;
  }
}

.recruit_advantage_item_contents {
  position: relative;
  padding: clamp(16px, 11.661px + 1.356vw, 32px);
}

.recruit_advantage_item_title {
  position: relative;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.08em;
  text-align: center;
}

.recruit_advantage_item_text {
  position: relative;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

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

.recruit_guidelines_group {
  position: relative;
  margin-top: 56px;
  padding: 120px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .recruit_guidelines_group {
    margin-top: 30px;
    padding: 40px 5%;
  }
}

.recruit_guidelines_group_title {
  position: relative;
  color: #002E52;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.08em;
  text-align: center;
}

.recruit_guidelines_figure {
  position: relative;
  max-width: clamp(600px, 545.763px + 16.949vw, 800px);
  width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .recruit_guidelines_figure {
    margin-top: 20px;
  }
}

.recruit_guidelines_figure dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .recruit_guidelines_figure dl {
    grid-template-columns: 1fr;
  }
}

.recruit_guidelines_figure dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: #0060AE;
  line-height: 130%;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #D9D9D9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .recruit_guidelines_figure dl dt {
    height: auto;
    padding: 5% 5% 0;
    border-bottom: 0;
  }
}

.recruit_guidelines_figure dl dd {
  position: relative;
  line-height: 150%;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #D9D9D9;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .recruit_guidelines_figure dl dd {
    padding: 3% 5% 5%;
  }
}

@media (max-width: 768px) {
  .recruit_guidelines_point {
    position: relative;
    padding-left: 1em;
    text-indent: -1em;
  }
}

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

.contact_tel_group {
  position: relative;
  margin-top: 56px;
  padding: clamp(24px, 17.492px + 2.034vw, 48px);
  background-color: #C6E8FF;
}
@media (max-width: 768px) {
  .contact_tel_group {
    margin-top: 32px;
  }
}

.contact_tel_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
}
@media (max-width: 768px) {
  .contact_tel_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact_tel_group_num {
  position: relative;
  max-width: clamp(240px, 218.305px + 6.78vw, 320px);
  width: 100%;
}

.contact_tel_group_hour {
  position: relative;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: 0.04em;
}

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

.contact_mail_outline {
  position: relative;
  line-height: 145%;
  letter-spacing: 0;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .contact_mail_outline {
    line-height: 180%;
    letter-spacing: 0.08em;
    margin-top: 24px;
  }
}

.contact_mail_form {
  position: relative;
  margin-top: 24px;
}

.form_wrapper dl {
  display: grid;
  grid-template-columns: 244px 1fr;
  border-top: 1px solid #0060AE;
}
@media (max-width: 768px) {
  .form_wrapper dl {
    grid-template-columns: 1fr;
  }
}

.form_wrapper dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  line-height: 130%;
  letter-spacing: 0.08em;
  padding: 30px 20px 16px;
  background-color: #0060AE;
  border-bottom: 1px solid #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .form_wrapper dl dt {
    padding: 5%;
  }
}

.contact_form_title_must {
  position: relative;
  color: #0060AE;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.08em;
  padding: 1px 6px;
  border-radius: 3px;
  background-color: #fff;
}

.form_wrapper dl dd {
  position: relative;
  padding: 23px 24px;
  border-bottom: 1px solid #0060AE;
}
@media (max-width: 768px) {
  .form_wrapper dl dd {
    padding: 5%;
  }
}

.form_wrapper dl dd.form_radio {
  padding: 30px 24px;
}
@media (max-width: 768px) {
  .form_wrapper dl dd.form_radio {
    padding: 5%;
  }
}

.form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 13.831px + 0.678vw, 24px);
}
@media (max-width: 1250px) {
  .form_radio_buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .form_radio_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.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 5px;
  line-height: 145%;
  letter-spacing: 0;
  cursor: pointer;
}

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

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  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: #0060AE;
}

.contact_form_input input {
  max-width: clamp(360px, 300.339px + 18.644vw, 580px);
  width: 100%;
  height: 36px;
  background-color: #E9E9E9 !important;
  padding: 0 10px;
  outline: none;
}

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

.contact_form_figure_inner {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.contact_form_address {
  margin-top: 10px;
}

.contact_form_input textarea {
  min-width: clamp(650px, 609.322px + 12.712vw, 800px);
  max-width: clamp(650px, 609.322px + 12.712vw, 800px);
  width: 100%;
  min-height: 240px;
  padding: 15px;
  background-color: #E9E9E9 !important;
}
@media (max-width: 1250px) {
  .contact_form_input textarea {
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact_form_input textarea {
    min-height: 200px;
  }
}

.form_privacy {
  position: relative;
  margin-top: 40px;
  padding: clamp(16px, 11.661px + 1.356vw, 32px) clamp(24px, 19.661px + 1.356vw, 40px);
  background-color: #F7F7F7;
}
@media (max-width: 768px) {
  .form_privacy {
    margin-top: 30px;
    padding: 8%;
  }
}

.form_privacy_title {
  position: relative;
  font-size: clamp(16px, 15.458px + 0.169vw, 18px);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .form_privacy_title {
    line-height: 160%;
  }
}

.form_privacy_content {
  position: relative;
  max-height: 145px;
  overflow-y: scroll;
  margin-top: 30px;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  scrollbar-gutter: stable;
}
@media (max-width: 768px) {
  .form_privacy_content {
    min-height: 80px;
    margin-top: 15px;
  }
}

.form_privacy_text {
  position: relative;
  line-height: 180%;
  letter-spacing: 0;
}

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

.form_btn .textbtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #232323;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 150%;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 clamp(12px, 5.492px + 2.034vw, 36px);
}
@media (max-width: 768px) {
  .form_btn .textbtn {
    font-size: 14px;
  }
}

.form_btn .textbtn::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background-color: #C6E8FF;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  top: -17px;
  right: -23px;
}
@media (max-width: 768px) {
  .form_btn .textbtn::after {
    width: 48px;
    height: 48px;
    top: -12px;
    right: -19px;
  }
}

@media (min-width: 768px) {
  .form_btn .textbtn:hover::after {
    width: 96px;
    height: 96px;
    top: -31px;
    right: -37px;
  }
}
@media (max-width: 768px) {
  .form_btn .textbtn:hover::after {
    width: 68px;
    height: 68px;
    top: -12px;
    right: -19px;
  }
}

.form_btn .textbtn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(8px, 5.831px + 0.678vw, 16px);
}

.form_btn .textbtn span::after {
  content: "";
  position: relative;
  width: 77px;
  height: 14px;
  background: url(../images/common/btn_arrowNavyblue.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 1;
}
@media (max-width: 768px) {
  .form_btn .textbtn span::after {
    width: 49px;
    height: 9px;
  }
}

/* thanks
------------------------------ */
.thanks_maintitle .section_maintitle_ja {
  font-size: clamp(24px, 19.661px + 1.356vw, 40px);
}
@media (max-width: 768px) {
  .thanks_maintitle .section_maintitle_ja {
    font-size: 24px;
  }
}

.thanks_outline {
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .thanks_outline {
    margin-top: 16px;
  }
}

.thanks_outline:nth-child(2) {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .thanks_outline:nth-child(2) {
    margin-top: 32px;
  }
}

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

/* footer
------------------------------ */
.footer {
  position: relative;
  padding: 72px 0 80px;
  background-color: #002E52;
}
@media (max-width: 1250px) {
  .footer {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 180px;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 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: clamp(260px, 213.356px + 14.576vw, 432px);
  width: 100%;
}
@media (max-width: 768px) {
  .footer_logo {
    display: none;
    margin: 0 auto;
  }
}

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

.footer_info {
  position: relative;
  color: #fff;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .footer_info {
    text-align: center;
    margin-top: 0;
  }
}

.footer_info p {
  line-height: 180%;
  letter-spacing: 0.05em;
}

.footer_info p + p {
  margin-top: 16px;
}

.footer_nav {
  position: relative;
  max-width: 276px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer_nav {
    max-width: unset;
  }
}

.footer_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  color: #fff;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.05em;
}

.footer_list a::after {
  border-color: #fff;
}

.footer_list_parent + .footer_list_parent {
  margin-top: 20px;
}

.footer_copyright {
  position: absolute;
  margin-top: 32px;
  text-align: right;
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .footer_copyright {
    position: relative;
    margin-top: 30px;
    text-align: center;
  }
}

.footer_copyright small {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 100%;
  font-size: 10px;
}
@media (max-width: 768px) {
  .footer_copyright small {
    letter-spacing: 0.05em;
  }
}

.footer_copyright a::after {
  border-color: #fff;
}

/* 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_tel {
  width: 50%;
}

.foot_menu_tel a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 145%;
  font-weight: 700;
  background-color: #F7F7F7;
  padding: 10px 0 20px;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 145%;
  background: #005FA3;
  background: linear-gradient(-45deg, rgb(0, 95, 163) 0%, rgb(0, 186, 202) 100%);
  padding: 10px 0 20px;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  color: #002E52;
  background-color: #fff;
  border: 2px solid #002E52;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  z-index: 10;
}
@media (max-width: 1250px) {
  .page_top {
    right: 5%;
    bottom: 155px;
  }
}
@media (max-width: 768px) {
  .page_top {
    width: 50px;
    height: 50px;
    bottom: 80px;
  }
}

@media (min-width: 768px) {
  .page_top:hover {
    border-color: #0060AE;
    background-color: #0060AE;
    bottom: 35px;
  }
}
@media (max-width: 1250px) {
  .page_top:hover {
    bottom: 155px;
  }
}
@media (max-width: 768px) {
  .page_top:hover {
    bottom: 80px;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-top: 2px solid #002E52;
  border-right: 2px solid #002E52;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .page_top::before {
    width: 12px;
    height: 12px;
  }
}

.page_top:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
  top: 38%;
}
@media (max-width: 768px) {
  .page_top:hover::before {
    top: 42%;
    border-top-color: #002E52;
    border-right-color: #002E52;
  }
}

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

.foot_menu_tel a {
  position: relative;
}