@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: "ヒラギノ角ゴ Pro", "Noto Sans JP", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

.btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 230px;
  width: 100%;
  color: #fff;
  background-color: #1F4693;
  text-align: left;
  line-height: 145%;
  padding: 12px 50px 11px 25px;
}
@media (max-width: 768px) {
  .btn {
    max-width: 180px;
    font-size: 14px;
    padding: 15px 30px 15px 20px;
  }
}

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

.btn_center {
  text-align: center;
}

.btn_center .btn {
  text-align: left;
}

.btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  background: url(../images/common/icon_btn_arrowW.svg) no-repeat center center/contain;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .btn::after {
    right: 15px;
  }
}

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

.btn.color_red {
  color: #BC121E;
  background-color: #fff;
}

.btn.color_red::after {
  background-image: url(../images/common/btn_arrowRightRed.svg);
}

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

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

.btn.color_blue {
  color: #1F4693;
  background-color: #fff;
}

.btn.color_blue::after {
  background-image: url(../images/common/btn_arrowRightBlue.svg);
}

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

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

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

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

.fw_bold {
  font-weight: 700;
}

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

.section_title {
  text-align: center;
}

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

.section_title_ja {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 150%;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 20px;
    line-height: 140%;
    margin-top: 5px;
  }
}

.section_title_en {
  color: #1F4693;
  font-weight: 600;
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 120%;
  letter-spacing: 0.1em;
  margin-top: 17px;
}

.section_deco_en {
  position: absolute;
  color: #F7F7F7;
  font-size: clamp(75px, 60.627px + 4.492vw, 128px);
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0;
}

.body.is_open {
  overflow: hidden;
}

.deco_img {
  position: absolute;
}

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

.header.header_fixed {
  height: 100px;
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
    padding: 0;
  }
}

.customize-support .header {
  top: 32px;
}

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

.header_inner {
  position: relative;
}

.header_logo {
  position: relative;
  width: 100%;
  max-width: clamp(200px, 171.254px + 8.983vw, 306px);
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  margin: 0 auto;
  padding-top: 30px;
}
@media (max-width: 1080px) {
  .header_logo {
    max-width: 420px;
    top: 32px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: calc(100% - 80px);
    max-width: 270px;
    margin-inline: 0;
    height: inherit;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    padding-top: 10px;
  }
}

.header_logo a {
  display: inline-block;
}

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

@media (max-width: 1080px) {
  .header_fixed .header_logo {
    top: 0;
  }
}

.header_navbox {
  position: relative;
  margin-top: 30px;
  background-color: rgba(0, 40, 130, 0.8);
}
@media (max-width: 768px) {
  .header_navbox {
    margin-top: 0;
  }
}

.header_nav.wrapper {
  max-width: 1050px;
}
@media (max-width: 1080px) {
  .header_nav.wrapper {
    display: none;
  }
}

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

.header_list_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: clamp(14px, 13.458px + 0.169vw, 16px);
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 16px clamp(26px, 20.576px + 1.695vw, 46px);
  -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: 5px;
}

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

.header_list_link::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 35px;
  background-color: #0082DC;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

.header_list:last-child .header_list_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 35px;
  background-color: #0082DC;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}

.header_list_link_en {
  position: relative;
  color: #3A82C8;
  font-size: 10px;
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
}

/* 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: 70px;
  left: 50%;
  width: 235px;
  background-color: #3A82C8;
  -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 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

.header_list_modal_item a {
  position: relative;
  display: block;
  color: #fff;
  line-height: 145%;
  text-align: center;
  padding: 10px 0;
}

.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: #1F4693;
  }
}

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

.header_hamburger.is_open {
  background-color: transparent;
}

.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: -13px;
}

.header_hamburger_bar:nth-of-type(2) {
  top: -4px;
}

.header_hamburger_bar:nth-of-type(3) {
  top: 5px;
}

.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: 12px;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: 0 auto;
}

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

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

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

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

.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;
  color: #fff;
}

.header_drawer_list_menus {
  padding-bottom: 10px;
}

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

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

/* top - top_mw
------------------------------ */
.top_mw_inner {
  position: relative;
  line-height: 0;
}

/* top - top_about
------------------------------ */
.top_about {
  padding-top: 75px;
}
@media (max-width: 768px) {
  .top_about {
    padding-top: 0;
  }
}

.top_about .section_title_logo {
  position: relative;
  max-width: clamp(38px, 27.695px + 3.22vw, 76px);
  width: 100%;
  margin: 0 auto;
}

.top_about .section_title_ja {
  text-align: center;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .top_about .section_title_ja {
    margin-top: 20px;
    padding-bottom: 0;
  }
}

.top_about_outline {
  position: relative;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: center;
  margin-top: 25px;
}

.top_about_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;
  margin-top: 35px;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
}
@media (max-width: 768px) {
  .top_about_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

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

/* top - top_business
------------------------------ */
.top_business {
  margin-top: 80px;
}

.top_business_list {
  position: relative;
  background-color: #EDEDED;
}

.top_business_list + .top_business_list {
  background-color: #fff;
}

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

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

.top_business_img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .top_business_img {
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
  }
}

.top_business_list:nth-child(2) .top_business_img {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .top_business_list:nth-child(2) .top_business_img {
    margin: 0 auto;
  }
}

.top_business_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 650/400;
}

.top_business_contents {
  position: relative;
  max-width: 50%;
  width: 100%;
  padding: 48px 0 55px clamp(20px, 9.153px + 3.39vw, 60px);
}
@media (max-width: 768px) {
  .top_business_contents {
    max-width: unset;
    padding: 25px 20px 55px;
  }
}

.top_business_list:nth-child(2) .top_business_contents {
  padding: 48px 28px 55px 0;
}
@media (max-width: 768px) {
  .top_business_list:nth-child(2) .top_business_contents {
    padding: 48px 20px 55px;
  }
}

.top_business_title_num {
  position: absolute;
  display: block;
  color: #fff;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px 13px;
  top: 48px;
  left: -28px;
}
@media (max-width: 768px) {
  .top_business_title_num {
    position: relative;
    width: 50px;
    top: auto;
    left: auto;
  }
}

.top_business_list:nth-child(2) .top_business_title_num {
  left: auto;
  right: -28px;
}
@media (max-width: 768px) {
  .top_business_list:nth-child(2) .top_business_title_num {
    right: auto;
  }
}

.top_business_title .section_title_img {
  position: relative;
  width: auto;
  max-height: clamp(30px, 26.203px + 1.186vw, 44px);
  height: 100%;
}
@media (max-width: 768px) {
  .top_business_title .section_title_img {
    margin-top: 10px;
  }
}

.top_business_title .section_title_img img {
  width: auto;
  height: 100%;
}
@media (max-width: 768px) {
  .top_business_title .section_title_img img {
    width: 100%;
    height: auto;
  }
}

.top_business_title .section_title_ja {
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  text-align: left;
  margin-top: 25px;
}

.top_business_text {
  position: relative;
  max-width: clamp(300px, 272.881px + 8.475vw, 400px);
  width: 100%;
  line-height: 1.75;
  letter-spacing: 0.025em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .top_business_text {
    max-width: unset;
  }
}

.top_business_list:nth-child(2) .top_business_text {
  max-width: clamp(350px, 314.746px + 11.017vw, 480px);
}

.top_business_btn {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .top_business_btn {
    text-align: center;
  }
}

.top_business_foot {
  padding: 75px 0 88px;
  background-color: #EDEDED;
}

.top_business_menus {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 768px) {
  .top_business_menus {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.top_business_menu {
  position: relative;
  max-width: clamp(250px, 235.085px + 4.661vw, 305px);
  width: 100%;
}
@media (max-width: 768px) {
  .top_business_menu {
    margin: 0 auto;
  }
}

.top_business_menu_title_en {
  position: relative;
  max-width: 110px;
  width: 100%;
  min-height: 78px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_business_menu_title_en {
    min-height: unset;
  }
}

.top_business_menu:first-child .top_business_menu_title_en {
  max-width: 273px;
}

.top_business_menu_num {
  position: absolute;
  color: #fff;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px 13px 16px 12px;
  top: 45%;
  left: -26px;
}

.top_business_menu_content {
  margin-top: 15px;
  background-color: #fff;
}

.top_business_menu_text {
  text-align: center;
  padding: 25px clamp(22px, 17.661px + 1.356vw, 38px) 0;
}

.top_business_menu_text p {
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.025em;
}

.top_business_menu_text p:nth-child(2) {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 0.5px solid #909090;
}

.top_business_menu_btn {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 25px;
}

/* sub
------------------------------ */
.section_main_title {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section_maintitle_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 350px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 68px;
}

.section_maintitle_inner_ja {
  position: relative;
  width: 100%;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.section_maintitle_inner_en {
  position: relative;
  color: #3A81C7;
  font-size: 10px;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 5px;
}

/* layout
------------------------------ */
.wrapper {
  position: relative;
  display: block;
  clear: both;
  float: none;
  width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: visible;
}

/* main contents
------------------------------ */
.title_box {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .title_box {
    height: auto;
  }
}

.title_box h1, .title_box p {
  position: relative;
  display: block;
  height: 160px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  padding-top: 190px;
}
@media (max-width: 768px) {
  .title_box h1, .title_box p {
    height: auto;
    font-size: 22px;
    padding: 50px 0;
  }
}

.title_box span.en,
.main_contents span.en,
aside span.en {
  position: relative;
  display: block;
  color: #3A81C7;
  font-size: 10px;
  font-weight: 500;
  font-family: "Arial", sans-serif;
  letter-spacing: 0.07em;
}

.title_box span.en {
  margin-top: 8px;
}

.bread_crumb {
  position: relative;
  display: block;
  margin-bottom: 50px;
  padding: 40px 0 8px;
  border-bottom: 1px solid #000;
}

.bread_crumb ul {
  letter-spacing: -0.4em;
}

.bread_crumb ul li {
  position: relative;
  display: inline-block;
  color: #003283;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.bread_crumb ul li:after {
  content: ">";
  color: #808080;
  margin: 0 22px;
}

.bread_crumb ul li:last-child:after {
  display: none;
}

.main_contents {
  max-width: 810px;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .main_contents {
    margin-bottom: 20px;
  }
}

.wide {
  max-width: 1050px;
  width: 100%;
}

.main_contents .business_main {
  position: relative;
  display: block;
  min-height: 100px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 145%;
  margin: 0 auto;
  padding: 26px 30px 20px 36px;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .main_contents .business_main {
    font-size: 20px;
  }
}

.main_contents .business_main:after {
  display: none;
}

.main_contents .business_main span {
  line-height: 1;
  margin-top: 5px;
}

.main_contents h2,
.single .title_border_b {
  position: relative;
  display: block;
  color: #003283;
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 38px;
  padding-bottom: 18px;
  border-bottom: 2px solid #C8C8C8;
}
@media (max-width: 768px) {
  .main_contents h2,
  .single .title_border_b {
    font-size: 22px;
    line-height: 180%;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
}

.main_contents h2:after,
.single .title_border_b::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: #003283;
  left: 0;
  bottom: -2px;
}

.main_contents .main_pict {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.main_contents .main_text {
  font-size: 18px;
  line-height: 26pt;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .main_contents .main_text {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.05em;
  }
}

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

/* business
------------------------------ */
#business_title, #product_title {
  background-image: url(../images/common/maintitle_food-area.jpg);
}

/* food */
#food_h1 {
  background: #7EBA19;
}

#food_h1 span.en {
  color: #008B2F;
}

#food2_h1 {
  background: #F4A823;
}

#food2_h1 span.en {
  color: #E34A07;
}

#supermarket {
  padding-bottom: 46px;
  border-bottom: 1px solid #000;
  margin-bottom: 60px;
}

#supermarket h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  #supermarket h3 {
    font-size: 18px;
    line-height: 145%;
    margin-bottom: 10px;
  }
}

#supermarket .main_pict {
  margin-top: 32px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #supermarket .main_pict {
    margin-bottom: 20px;
  }
}

#supermarket p {
  letter-spacing: 0.05em;
  line-height: 170%;
}
@media (max-width: 768px) {
  #supermarket p {
    font-size: 16px;
  }
}

#food2 #supermarket .main_text {
  letter-spacing: -0.07em;
}

#food .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  #food .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#food .items .pict, #kyowa_quality ul li .pict,
#food2 ul li .pict, .column_list ul li .pict {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #food .items .pict, #kyowa_quality ul li .pict,
  #food2 ul li .pict, .column_list ul li .pict {
    max-width: unset;
  }
}

#food .glay_box,
#food2 .glay_box, .column_list .glay_box {
  max-width: 400px;
	width: 100%;
  padding: 20px;
  background: #F0F0F0;
}
@media (max-width: 768px) {
  #food .glay_box,
  #food2 .glay_box, .column_list .glay_box {
    max-width: unset;
    padding: 8% 5%;
  }
}

#food .glay_box .blue,
#food .glay_box .blue {
  position: relative;
  display: block;
  color: #003283;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  #food .glay_box .blue,
  #food .glay_box .blue {
    font-size: 18px;
    line-height: 145%;
  }
}

#food .glay_box .num {
  position: relative;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  #food .glay_box .num {
    line-height: 180%;
    letter-spacing: 0.05em;
  }
}

#kyowa_quality h2 {
  position: relative;
  display: block;
  width: 100%;
}

#kyowa_quality h2 img {
  max-width: 432px;
  width: 100%;
}
@media (max-width: 768px) {
  #kyowa_quality h2 img {
    max-width: 70%;
  }
}

#kyowa_quality ul li,
#food2 #supermarket ul li,
.column_list ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  #kyowa_quality ul li,
  #food2 #supermarket ul li,
  .column_list ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.05em;
  }
}

#kyowa_quality h3,
#food2 #supermarket ul li h3,
.column_list ul li h3 {
  position: relative;
  display: block;
  color: #003283;
  font-size: 22px;
  font-weight: 700;
  line-height: 20pt;
  padding-top: 80px;
  padding-bottom: 14px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #kyowa_quality h3,
  #food2 #supermarket ul li h3,
  .column_list ul li h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.05em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 15px;
    padding-top: 0;
  }
}

.column_list ul li h3 {
  padding-top: 0;
}

#kyowa_quality h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 55px;
  height: 55px;
  color: #FFF;
  font-size: 26px;
  line-height: 1em;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", 和文フォント指定, sans-serif;
  text-align: center;
  padding-top: 15px;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
}
@media (max-width: 768px) {
  #kyowa_quality h3:before {
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 22px;
    padding-top: 9px;
  }
}

#kyowa_quality ul li:first-child h3:before {
  content: "01";
}

#kyowa_quality ul li:nth-child(2) h3:before {
  content: "02";
}

#kyowa_quality ul li:nth-child(3) h3:before {
  content: "03";
}

#kyowa_quality ul li:nth-child(4) h3:before {
  content: "04";
}

#food2 #kyowa_quality ul li .glay_box {
  height: auto;
}

#food2 #supermarket ul li h3,
#food2 #kyowa_quality ul li h3 {
  letter-spacing: 0.02em;
  padding-top: 0;
}

#food2 #kyowa_quality ul li h3:before {
  display: none;
}

#food2 #kyowa_quality ul li .glay_box .blue {
  position: relative;
  display: block;
  color: #003283;
  font-size: 18px;
  font-weight: 600;
  margin-top: 1em;
}

#food2 #kyowa_quality ul li .glay_box p {
  font-size: 16px;
}

#food2 #supermarket ul li .glay_box p,
#food2 #kyowa_quality ul li .glay_box p:nth-child(2) {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 22.5pt;
}

.column_list ul li p {
  line-height: 24pt;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .column_list ul li p {
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}

.column_list ul li.glay_large .glay_box {
	max-width: unset;
  width: 100%;
}

@media (max-width: 768px) {
  .column_list ul li.glay_large .glay_box video {
    width: 100%;
  }
}

#restaurant_h1, #ms_h1 {
  background: #999BC8;
}

#restaurant_h1 span.en,
#ms_h1 span.en {
  color: #6266AB;
}

#restaurant h3,
#material h3, #society h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #restaurant h3,
  #material h3, #society h3 {
    font-size: 18px;
    line-height: 160%;
  }
}

#restaurant .column_list ul li h3,
#material .column_list ul li h3,
#society .column_list ul li h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

#material .column_list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px 0;
}
@media (max-width: 768px) {
  #material .column_list ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#material .column_list ul li.glay_large .glay_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 11px;
}

@media (max-width: 768px) {
  #material .column_list ul li .pict {
    width: 49%;
  }
}

@media (max-width: 768px) {
  #material .column_list ul li .main_pict {
    width: 100%;
  }
}

.column_list ul li .logo {
  width: 246px;
  height: 138px;
}

.column_list ul li .logo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.column_list ul li .main_pict {
  position: relative;
  display: block;
	max-width: 810px;
  width: 100%;
  height: auto;
  margin: 11px auto 0;
}

.column_list .num {
  position: relative;
  display: block;
  padding-left: 2em;
  text-indent: -2em;
}

@media (max-width: 768px) {
  .column_list .num + .num {
    margin-top: 0.5em;
  }
}

.column_list dl dd {
  line-height: 170%;
}

.column_list dl dd .target {
  position: relative;
  display: block;
  padding-left: 4em;
  text-indent: -4em;
}

.column_list dl dd .circle {
  position: relative;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

#material_h1, #life_h1 {
  background: #91D3F4;
}

#life_h1, #ms_h1 {
  margin-top: 50px;
}

#material_h1 span.en,
#life_h1 span.en {
  color: #47B5EC;
}

#smile_h1, #society_h1 {
  background: #FDE173;
}

#smile_h1 span.en, #society_h1 span.en {
  color: #FBA900;
}

#society .column_list ul li.glay_large p {
  font-size: 16px;
}

#society .column_list:first-of-type ul li .main_pict {
  width: 765px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #society .column_list:first-of-type ul li .main_pict {
    width: 100%;
    overflow: scroll;
  }
}

.mincho {
  font-family: "Hiragino Mincho ProN", Georgia, 游明朝, "Yu Mincho", YuMincho, HGS明朝E, メイリオ, Meiryo, serif;
}

#society .s_pict {
  width: 208px;
  height: 208px;
}
@media (max-width: 768px) {
  #society .s_pict {
    margin: 0 auto;
  }
}

#society .column_list .layout_box {
  gap: 0 15px;
}

#society .column_list:nth-of-type(2) .main_text {
  max-width: 587px;
  width: 100%;
  letter-spacing: -0.04em;
}
@media (max-width: 768px) {
  #society .column_list:nth-of-type(2) .main_text {
    max-width: unset;
    letter-spacing: 0.05em;
    margin-top: 10px;
  }
}

#society .column_list ul li .bnr a {
  display: block;
  max-width: 230px;
  width: 100%;
}
@media (max-width: 768px) {
  #society .column_list ul li .bnr a {
    margin: 0 auto;
  }
}

#society .column_list:nth-of-type(2) ul li {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #society .column_list:nth-of-type(2) ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 768px) {
  #society .column_list ul li .pict {
    width: 49%;
  }
}

@media (max-width: 768px) {
  #society .column_list ul li .main_pict {
    width: 100%;
  }
}

/* product
------------------------------ */
#premium_h1 {
  background: #004593;
}

#product h2.business_main {
  background: #004593;
  max-width: 1014px;
  width: 100%;
  color: #FFF;
  margin-bottom: 46px;
}

#product h2.business_main .en {
  color: #55BFED;
}

#product .layout_box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#product h3 {
  max-width: 760px;
  width: 100%;
  color: #004593;
  font-size: 20px;
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  #product h3 {
    margin-bottom: 30px;
  }
}

#product h3 .new {
  position: relative;
  display: block;
  color: #FFF;
  width: 76px;
  font-size: 18px;
  text-align: center;
  line-height: 29px;
  margin-bottom: 20px;
  /*margin-right: 15px;
  padding: 0 11px;*/
  background: #004593;
}

#product h3 .small {
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

#product a, #product a img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

#product a {
  overflow: hidden;
}

#product a:hover {
  opacity: 0.7;
}

#product a img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

#product a:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.loupe {
  z-index: 9000;
  border: 1px solid black;
  -webkit-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
  border-radius: 50px;
}

#product .main {
  width: 240px;
  height: 340px;
  /*margin-right: 44px;*/
  border: 1px solid #000;
}
@media (max-width: 768px) {
  #product .main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

#product .page {
  width: 802px;
  height: 283px;
  letter-spacing: -0.4em;
}

#product .page li {
  position: relative;
  display: inline-block;
  width: 184px;
  height: 130px;
  margin-right: 21px;
  margin-bottom: 18px;
}

#product .page li:nth-child(4n) {
  margin-right: 0;
}

#product .page li a {
  position: relative;
  display: inline-block;
  width: 92px;
  height: 130px;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#product .page li a:first-child {
  margin-right: -0.4em;
}

#product .column_list p.mt25 {
  margin-top: 25px;
}

#product .caution {
  font-size: 16px;
  margin-top: 5px;
}

.back_number {
  position: relative;
  display: block;
  height: auto;
  margin-top: 45px;
  padding: 30px 30px 2px;
  background: #F1F1F1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .back_number {
    padding: 8% 5%;
  }
}

#product .back_number h3 {
  color: #004593;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}

#product .back_number ul {
  letter-spacing: -0.4em;
}
@media (max-width: 768px) {
  #product .back_number ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

#product .back_number ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 102px;
  height: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.04em;
  margin-right: 24px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  #product .back_number ul li {
    width: auto;
    margin: 0;
  }
}

#product .back_number ul li:nth-child(8n) {
  margin-right: 0;
}

#product .back_number ul li a.thumb {
  display: block;
  margin-bottom: 12px;
}

#jfsa_info {
  margin-top: 77px;
}

/* company
------------------------------ */
#company .business_main,
#history .business_main {
  color: #FFF;
  background: #003281;
  margin-bottom: 40px;
}

#company #company_h1 {
  margin-bottom: 0;
}

#company_title {
  background-image: url(../images/common/company_h1.jpg);
}

#company_title h1,
#company_title h1 span {
  color: #FFF;
}

#company h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  #company h3 {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 15px;
  }
}

#greeting .pict {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  #greeting .pict {
    margin: 0 auto 20px;
  }
}

#greeting .pict p {
  font-size: 14px;
  line-height: 1em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #greeting .pict p {
    text-align: center;
  }
}

#greeting p .strong {
  font-weight: 600;
}

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

#greeting p.fl_r {
  font-size: 16px;
}
@media (max-width: 768px) {
  #greeting p.fl_r {
    position: relative;
    width: 100%;
    text-align: right;
  }
}

#greeting p.fl_r .strong {
  position: relative;
  display: block;
  font-size: 20px;
  text-align: right;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #greeting p.fl_r .strong {
    font-size: 16px;
  }
}

#greeting p.fl_r .name {
  position: relative;
  display: inline-block;
  width: 168px;
  height: 40px;
  font-size: 0;
  background: url(../images/company/name.jpg) no-repeat center bottom;
  background-size: contain;
  margin-left: 16px;
  top: -8px;
}

#idea p.fl_r {
  font-size: 16px;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-top: 1em;
  text-align: right;
}

#idea p.fl_r .name {
  position: relative;
  display: inline-block;
  width: 168px;
  height: 40px;
  text-indent: -9999px;
  text-align: left;
  background: url(../images/company/name2.png) no-repeat 0 0;
  background-size: contain;
  margin-left: 16px;
  top: -8px;
}

#idea ul li:first-child {
  display: block;
  margin-bottom: 46px;
}
@media (max-width: 768px) {
  #idea ul li:first-child {
    margin: 30px auto 20px;
  }
}

#idea ul li:first-child .glay_box {
  max-width: unset;
}

#idea ul li:nth-child(2) {
  position: relative;
  margin-bottom: 60px;
  background: url(../images/company/idea_bg.jpg) no-repeat 0 0;
  background-size: cover;
}
@media (max-width: 768px) {
  #idea ul li:nth-child(2) {
    padding: 8% 5%;
  }
}

#idea ul li:nth-child(2) .pict {
  max-width: 230px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #idea ul li:nth-child(2) .pict {
    margin: 0 auto;
  }
}

#idea ul li:nth-child(2) .glay_box {
  max-width: 510px;
  width: 100%;
  padding: 20px 0;
  background: transparent;
}

#profile dl {
  margin-bottom: 40px;
}

#profile dl dt, #profile dl dd {
  background: #EEE;
  margin-bottom: 1px !important;
  padding: 8px 24px;
}

#profile dl dt {
  width: 208px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 768px) {
  #profile dl dt {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
}

#profile dl dt:after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 68px;
  background: #FFF;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  #profile dl dt:after {
    display: none;
  }
}

#profile dl dt:nth-child(7):after {
  height: 120px;
}

#company .pict_list {
  letter-spacing: -0.4em;
}
@media (max-width: 768px) {
  #company .pict_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 2%;
  }
}

#company .pict_list li {
  position: relative;
  display: inline-block;
  width: 400px;
  height: auto;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 768px) {
  #company .pict_list li {
    display: block;
    width: 49%;
    margin: 0;
  }
}

#company .pict_list li:nth-child(2n) {
  margin-right: 0;
}

#company .pict_list li .pict {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #company .pict_list li .pict {
    margin-bottom: 5px;
  }
}

#profile dl.address {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #profile dl.address {
    margin-top: 30px;
  }
}

#profile dl.address dd {
  position: relative;
}

#profile ul.other li {
  font-size: 16px;
  margin-bottom: 1px;
}

#profile ul.other li.glay_large .glay_box {
  max-width: unset;
}
@media (max-width: 768px) {
  #profile ul.other li.glay_large .glay_box {
    font-size: 14px;
    line-height: 155%;
    padding: 8px 24px;
  }
}

#profile ul.other li h3 {
  font-size: 16px;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #profile ul.other li h3 {
    font-size: 14px;
  }
}

.ggmap a {
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto 0;
}

.ggmap a:hover {
  opacity: 0.7;
}

.ggmap a img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.hide_contents {
  position: relative;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #C8C8C8;
}
@media (max-width: 768px) {
  .hide_contents {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.hide_contents_link {
  position: relative;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  padding: 20px 80px 20px 30px;
  background-color: #3a80c4;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.hide_contents_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 6px;
  background: url(../images/common/icon_btn_arrowW.svg) no-repeat center center/contain;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.hide_contents_link.active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.hide_contents_inner {
  display: none;
  padding: 40px 38px;
  background-color: #EEE;
}
@media (max-width: 768px) {
  .hide_contents_inner {
    padding: 8% 5%;
  }
}

#company .hide_contents_inner h3 {
  position: relative;
  color: #003280;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.hide_contents_inner p {
  position: relative;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.01em;
  padding-left: 2em;
  text-indent: -2em;
}

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

.hide_contents_inner p span {
  display: block;
  padding-left: 6.5em;
  text-indent: -6.5em;
}

.hide_contents_inner p span.brackets {
  padding-left: 3.1em;
  text-indent: -2.7em;
}

@media (min-width: 768px) {
  .hide_contents_link:hover {
    opacity: 0.8;
  }
}
/* history
------------------------------ */
#profile dl, #history dl {
  display: grid;
  grid-template-columns: 208px 1fr;
}
@media (max-width: 768px) {
  #profile dl, #history dl {
    grid-template-columns: 1fr;
  }
}

#profile dl dt, #history dl dt {
  position: relative;
  display: block;
  color: #003281;
  font-weight: 600;
}
@media (max-width: 768px) {
  #profile dl dt, #history dl dt {
    font-size: 16px;
  }
}

#profile dl dd, #history dl dd {
  max-width: 600px;
  width: 100%;
  letter-spacing: -0.02em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  #profile dl dd, #history dl dd {
    max-width: unset;
    letter-spacing: 0.05em;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
  }
}

@media (max-width: 768px) {
  #profile dl dd {
    margin-top: 0;
  }
}

/* recruit
------------------------------ */
.recruit_title_box {
  position: relative;
  width: 100%;
}

.recruit_title_text {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -124px;
}
@media (max-width: 768px) {
  .recruit_title_text {
    bottom: -54px;
  }
}

.recruit_title_text_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 178px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .recruit_title_text_inner {
    height: 120px;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}

.recruit_title_text::after {
  content: "";
  position: absolute;
  display: block;
  width: 58%;
  height: 178px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  background-color: rgba(0, 50, 128, 0.85);
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .recruit_title_text::after {
    width: 80%;
    height: 120px;
  }
}

.recruit_title_en {
  position: relative;
  display: block;
  max-width: 292px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit_title_en {
    max-width: 170px;
  }
}

.recruit_title_ja {
  position: relative;
  display: block;
  color: #FFF;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 700;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit_title_ja {
    font-size: 18px;
  }
}

.recruit_btn .btn {
  max-width: 275px;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 14px 25px;
}

.recruit_btn .btn::after {
  max-width: unset;
  width: 25px;
  height: 25px;
  background: url(../images/common/icon_circlearrowWhite.svg) no-repeat center center/contain;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.recruit_about {
  position: relative;
  margin-top: 240px;
  padding-bottom: 123px;
  background: rgb(0, 50, 128);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 50, 128)), color-stop(27%, rgb(0, 50, 128)), color-stop(27%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgb(0, 50, 128) 0%, rgb(0, 50, 128) 27%, rgb(255, 255, 255) 27%, rgb(255, 255, 255) 100%);
}
@media (max-width: 768px) {
  .recruit_about {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}

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

.recruit_about_title_ja {
  position: relative;
  font-size: clamp(26px, 23.831px + 0.678vw, 34px);
  font-weight: 700;
  line-height: 1.64em;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .recruit_about_title_ja {
    font-size: clamp(18px, 16.373px + 0.508vw, 24px);
    margin-top: 20px;
  }
}

.recruit_about_outline {
  margin-top: 25px;
}

.recruit_about_outline p {
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  text-align: center;
  line-height: 2.2em;
  letter-spacing: 0.05em;
}

.recruit_about_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 26px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .recruit_about_cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 2%;
  }
}

.recruit_about_card {
  position: relative;
  max-width: 242px;
  width: 100%;
  background-color: #e9e9e9;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
  padding-bottom: 23px;
}
@media (max-width: 768px) {
  .recruit_about_card {
    max-width: unset;
    width: 49%;
  }
}

.recruit_about_card_title {
  position: relative;
  color: #FFF;
  font-size: clamp(16px, 14.644px + 0.424vw, 21px);
  font-weight: 700;
  line-height: 1.4em;
  text-align: center;
  padding: 20px 0;
  background-color: #003280;
}
@media (max-width: 768px) {
  .recruit_about_card_title {
    font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  }
}

.recruit_about_card_img {
  position: relative;
  max-width: 219px;
  width: 100%;
  margin: 12px auto 0;
}

.recruit_about_btn {
  text-align: center;
  margin-top: 18px;
}

.recruit_about_btn .btn {
  max-width: 185px;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .recruit_about_btn .btn {
    width: 90%;
    font-size: 15px;
  }
}

.recruit_about_btn .btn::after {
  max-width: unset;
  width: 25px;
  height: 25px;
  background: url(../images/common/icon_circlearrowWhite.svg) no-repeat center center/contain;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media (max-width: 768px) {
  .recruit_about_btn .btn::after {
    width: 17px;
    height: 17px;
  }
}

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

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

.recruit_blog_title_ja {
  position: relative;
  font-size: clamp(18px, 16.915px + 0.339vw, 22px);
  font-weight: 700;
  text-align: center;
  line-height: 2.54;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.recruit_blog_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 26px;
  margin-top: 70px;
}

.recruit_blog_list {
  position: relative;
  max-width: 512px;
  width: 100%;
  border-top: 0.5px solid #003280;
  border-bottom: 0.5px solid #003280;
}

.recruit_blog_list_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 21px 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 22px;
}

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

.recruit_blog_list_inner:hover {
  opacity: 0.7;
}

.recruit_blog_list_inner:hover::after {
  right: 15px;
}

.recruit_blog_list_img {
  position: relative;
  max-width: 131px;
  width: 100%;
}

.recruit_blog_list_text {
  position: relative;
  max-width: 280px;
  width: 100%;
  margin-top: 10px;
}

.recruit_blog_list_time {
  position: relative;
  color: #003280;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.recruit_blog_list_title {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  margin-top: 7px;
}

.recruit_blog .recruit_btn {
  text-align: center;
  margin-top: 66px;
}

.recruit_voice {
  position: relative;
  margin-top: 106px;
  padding: 106px 0 114px;
  background-color: #e9e9e9;
}
@media (max-width: 768px) {
  .recruit_voice {
    margin-top: 50px;
    padding: 60px 0 70px;
  }
}

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

.recruit_voice_title_ja {
  position: relative;
  font-size: clamp(18px, 16.915px + 0.339vw, 22px);
  font-weight: 700;
  text-align: center;
  line-height: 2.54;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .recruit_voice_title_ja {
    font-size: 14px;
  }
}

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

.recruit_voice_list {
  position: relative;
  max-width: 505px;
  width: 100%;
  padding: 30px 30px 35px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .recruit_voice_list {
    max-width: unset;
  }
}

.recruit_voice_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.recruit_voice_list_img img {
  height: auto;
}

.recruit_voice_list_name {
  position: relative;
  max-width: 317px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}

.recruit_voice_list_name h3 {
  position: relative;
  color: #003280;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.27;
}

.recruit_voice_list_name h3 span {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
}

.recruit_voice_list_txt {
  position: relative;
  margin-top: 25px;
}

.recruit_voice_list_txt .wp-block-image {
  margin-bottom: 0;
}

.recruit_job {
  margin-top: 100px;
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  .recruit_job {
    margin-top: 50px;
    padding-bottom: 50px;
  }
}

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

.recruit_job_title_ja {
  position: relative;
  font-size: clamp(18px, 16.915px + 0.339vw, 22px);
  font-weight: 700;
  text-align: center;
  line-height: 2.54;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .recruit_job_title_ja {
    font-size: 16px;
  }
}

.subsection_title {
  position: relative;
  display: block;
  color: #003283;
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 38px;
  padding-bottom: 18px;
  border-bottom: 2px solid #C8C8C8;
}
@media (max-width: 768px) {
  .subsection_title {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}

.subsection_title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: #003283;
  left: 0;
  bottom: -2px;
}

.recruit_job .subsection_title {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .recruit_job .subsection_title {
    margin-top: 30px;
  }
}

.recruit_job_lists {
  display: grid;
  grid-template-columns: 208px 1fr;
}
@media (max-width: 768px) {
  .recruit_job_lists {
    grid-template-columns: 1fr;
  }
}

.recruit_job_lists dt {
  color: #FFF;
  font-weight: 700;
  line-height: 1.5em;
  padding: 7px 25px;
  border-bottom: 2px solid #FFF;
  background-color: #003280;
}

.recruit_job_lists dd {
  line-height: 1.5em;
  padding: 7px 25px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  background-color: #f2f2f2;
}

/* contact
------------------------------ */
.form {
  margin-top: 28px;
}

#contact .blue {
  color: #3A80C6;
}

.form tr th {
  width: 256px;
  color: #FFF;
  text-align: left;
  background: #003282;
  padding: 8px 22px 6px;
  border-bottom: 2px solid #FFF;
  vertical-align: top;
}
@media (max-width: 768px) {
  .form tr th {
    position: relative;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form tr th .must {
  color: #3A80C6;
  font-size: 12px;
}

.form tr td {
  width: 470px;
  padding: 8px 22px 6px;
  background: #EEE;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}
@media (max-width: 768px) {
  .form tr td {
    position: relative;
    display: block;
    width: 100%;
  }
}

.form tr td input[type=text],
.form tr td input[type=email],
.form tr td input[type=tel],
.form tr td textarea {
  width: 496px !important;
}
@media (max-width: 768px) {
  .form tr td input[type=text],
  .form tr td input[type=email],
  .form tr td input[type=tel],
  .form tr td textarea {
    width: 100% !important;
  }
}

form {
  max-width: 810px;
  width: 100%;
}
@media (max-width: 768px) {
  form {
    max-width: unset;
  }
}

form button {
  position: relative;
  display: block;
  width: 230px;
  height: 46px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  margin: 42px auto 0;
  padding-left: 24px;
  background: url(../images/arrow.png), #003284;
  background-repeat: no-repeat, no-repeat;
  background-position: center right 24px, 0 0;
  background-size: 8px 14px, contain;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form button:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-position: center right 14px, 0 0;
}

form button[disabled] {
  opacity: 0.8;
  cursor: default;
}

form button[disabled]:hover {
  opacity: 0.8;
  cursor: default;
}

/* thanks
------------------------------ */
#thanks p {
  text-align: center;
  margin-bottom: 40px;
}

/* news - archive
------------------------------ */
.news_archive_list li {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 20px 0;
}

.news_archive_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news_archive_list li a:hover {
  opacity: 0.7;
}

.news_archive_list .pict {
  position: relative;
  max-width: 250px;
  width: 100%;
}

.news_archive_list .text {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.news_archive_list .text .layout_flex,
#single_contents .date_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_archive_list .date,
#single_contents .date_box .date {
  color: #003283;
  font-size: 14px;
  font-weight: 600;
}

.news_archive_list .tag,
#single_contents .date_box .tag {
  position: relative;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 15px;
  text-align: center;
  background-color: #003283;
}

.news_archive_list h2 {
  font-size: 20px;
  margin: 20px auto;
}

/* news - single
------------------------------ */
.single .title_border_b {
  font-size: 20px;
  margin-top: 20px;
}

/* aside
------------------------------ */
aside {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  aside {
    margin: 0 auto;
  }
}

.aside_title {
  position: relative;
  display: block;
  height: 100px;
  background: #003283;
  padding-top: 24px;
  padding-left: 16px;
}

.aside_title h2 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}

aside ul li {
  position: relative;
  display: block;
  width: 200px;
  height: auto;
  font-weight: 600;
  border-bottom: 1px solid #828282;
}

aside ul li span {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding-left: 1em;
}

aside ul li span:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #003384;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
}

aside ul li.current {
  width: 168px;
  padding: 22px 16px 20px;
  background: #E6E6E6;
}

aside ul li a {
  position: relative;
  display: block;
  height: auto;
  padding: 22px 16px 20px;
}

aside ul li a:after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #003283;
  border-right: 1px solid #003283;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 32px;
  right: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

aside ul li a:hover {
  background: #E6E6E6;
}

aside ul li a:hover:after {
  right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* template-parts
------------------------------ */
/* foot_content */
.foot_content_contents {
  padding: 167px 0 168px;
  background: url(../images/common/footer_maincatch_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .foot_content_contents {
    padding: 57px 0 58px;
    margin-top: 50px;
  }
}

.foot_title_ja {
  position: relative;
  color: #fff;
  font-size: clamp(22px, 18.746px + 1.017vw, 34px);
  font-weight: 700;
  line-height: 62pt;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .foot_title_ja {
    font-size: 22px;
    line-height: 180%;
  }
}

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

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

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

.foot_link:nth-child(2) a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  background-color: #1F4693;
  padding: 22px clamp(40px, 34.576px + 1.695vw, 60px);
}

.foot_link:nth-child(2) a::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(20px, 17.831px + 0.678vw, 28px);
  height: 18px;
  background: url(../images/common/icon_mailWhite.svg) no-repeat center center/contain;
  top: 0;
  left: clamp(16px, 13.831px + 0.678vw, 24px);
  bottom: 0;
  margin: auto 0;
}

.foot_link:nth-child(2) a::after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 8px;
  background: url(../images/common/icon_btn_arrowW.svg) no-repeat center center/contain;
  top: 0;
  right: clamp(16px, 13.831px + 0.678vw, 24px);
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.foot_link:nth-child(2) a:hover {
  background-color: #000;
}

@media (min-width: 768px) {
  .foot_link:nth-child(2) a:hover::after {
    right: clamp(11px, 8.831px + 0.678vw, 19px);
  }
}

/* //foot_content */
/* cta
------------------------------ */
.cta {
  position: relative;
  background: url(../images/common/template_cta_bg.jpg) no-repeat center center/cover;
  padding: 80px 0;
}

.cta_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;
  gap: 0 20px;
}

.cta_title {
  color: #fff;
}

.cta_deco_en {
  top: -40px;
  left: clamp(80px, 43.932px + 11.271vw, 213px);
  opacity: 0.2;
}

.cta_text {
  position: relative;
  color: #fff;
  font-size: clamp(16px, 14.915px + 0.339vw, 20px);
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.05em;
  margin-top: 13px;
}

.cta_link {
  position: relative;
  max-width: 507px;
  width: 100%;
}

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

.footer_inner {
  padding: 70px 0;
  background-color: #000;
}

.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;
    text-align: center;
  }
}

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

.footer_info {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24pt;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.footer_info p span {
  font-weight: 700;
}

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

.footer_nav {
  max-width: 472px;
  width: 100%;
  border-left: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}

.footer_lists {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.footer_list {
  position: relative;
  padding-left: 50px;
}

.footer_list a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.footer_list_parent {
  line-height: 250%;
}

.footer_list_parent a {
  font-weight: 700;
}

.footer_list_child_item {
  position: relative;
  line-height: 215%;
  padding-left: 2em;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #1F4693;
  }
}

/* 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;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 145%;
  font-weight: 700;
  background-color: #908378;
  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;
  padding: 10px 0 20px;
}

/* page_top
------------------------------ */
.page_top {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  padding: 42px 0 15px;
  background-color: #1F4693;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}

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

.page_top::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

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

.foot_menu_tel a {
  position: relative;
}