html {
  font-size: 62.5%;
  visibility: hidden;
  /* フォントが読み込まれるまで非表示 */
  opacity: 0;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

html.wf-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

body {
  font-size: 1.75rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* ------------------------ トップナビ  ------------------------ */
header {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 85px;
}

.header_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* ティ・エス・ネットワークス サイト名*/
.top_globalnav_site {
  margin-bottom: 0;
}

.top_globalnav_site_link {
  color: #103292;
  text-decoration: none;
}

.top_site_name {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .top_site_name {
    font-size: 3.5rem;
  }
}

.top_site_subname {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.3rem;
  margin-bottom: 0;
}


/* ハンバーガーメニュー */
/* ボタン */
#menu_toggle {
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  height: 45px;
  width: 45px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2002;
}

#menu_toggle span {
  width: 100%;
  height: 4px;
  background-color: #103292;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu_toggle.open span:nth-child(1) {
  width: 80%;
  transform: rotate(45deg) translate(9px, 9px);
}

#menu_toggle.open span:nth-child(2) {
  width: 80%;
  opacity: 0;
}

#menu_toggle.open span:nth-child(3) {
  width: 80%;
  transform: rotate(-45deg) translate(7px, -7px);
}

/* //ボタン */

/* pcはハンバーガーボタン消す */
@media screen and (min-width: 1200px) {
  #menu_toggle {
    display: none;
  }
}

/* ハンバーガーメニュー表示 */
.global_navlist_inner {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 50%;
  min-width: 200px;
  height: 100%;
  padding: 60px 0 0 0;
  background: #fff;
  transform: translateX(0);
  transition: transform .3s;
}


/* ハンバーガーメニュー内 */
.global_navlist_wrap {
  display: block;
  position: unset;
  width: 100%;
}

.top_globalnav ul {
  list-style: none;
  text-align: center;
  margin-top: 25px;
  padding: 0;
}

.top_globalnav a {
  color: #707070;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  width: 100%;
}

.top_globalnav_item,
.top_globalnav_item_current {
  border-top: solid 1px #707070;
  font-size: 1.3rem;
}

.top_globalnav_item:hover,
.top_globalnav_item_current:hover {
  background-color: #F1F1F1;
}

.top_globalnav_item_meta {
  font-size: 1.3rem;
  border-bottom: solid 1px #fff;
}

.top_globalnav_item_meta a,
.top_globalnav_item_meta .bi {
  color: #707070;
}

.top_globalnav_item_meta a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1200px) {
  .top_globalnav_item_meta {
    display: none;
  }
}



.top_globalnav_flex {
  display: flex;
  justify-content: center;
  border-top: solid 1px transparent;
}

/* トップナビ  コンタクト*/
.top_globalnav_contact {
  background-color: #103292;
  border: solid 1px #fff;
  font-size: 1.3rem;  
}

.top_globalnav_contact:hover a {
  color: #103292;
}

.top_globalnav_contact:hover {
  background-color: #b8c7f0;
  border: solid 1px #103292;
}

.top_globalnav_contact a {
  color: #fff;
  display: inline-block;
  padding: 15px 30px;
}

/* //ハンバーガーメニュー内 */


@media screen and (min-width: 1200px) {
  .global_navlist_inner {
    position: unset;
    padding: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .global_navlist_inner.hidden {
    transform: translateX(0);
  }
}

.global_navlist_inner.hidden {
  transform: translateX(0);
}

.global_navlist_inner.active {
  transform: translateX(-100%);
}


/* ボタンを開いたら画面が暗くなる */
.global_navlist_wrap {
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: unset;
  left: unset;
  right: 0;
  width: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color .3s;
}

.global_navlist_wrap.active {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
}


/* --------------- pc トップナビ  --------------- */
@media screen and (min-width: 1200px) {

  /* トップナビ リンク */
  .global_navlist_wrap {
    display: block;
    position: unset;
    width: 100%;
  }

  .top_globalnav ul {
    list-style: none;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
  }

  .top_globalnav a {
    color: #707070;
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.75rem;
  }

  .top_globalnav_flex {
    display: flex;
    justify-content: center;
    border-top: solid 1px transparent;
  }

  /* トップナビ リンク　ホバー */
  .top_globalnav_item {
    position: relative;
    border: none;
  }

  .top_globalnav_item .top_globalnav_flex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #103292;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
  }

  .top_globalnav_item:hover .top_globalnav_flex::before {
    width: 80%;
    left: 50%;
  }

  .top_globalnav_item:hover,
  .top_globalnav_item_current:hover {
    background-color: #fff;
  }

  /* カレント */
  .top_globalnav_item_current {
    position: relative;
    border: none;
  }

  .top_globalnav_item_current a {
    color: #103292;
  }

  .top_globalnav_item_current .top_globalnav_flex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #103292;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
  }

  .top_globalnav_item_current:hover .top_globalnav_flex::before {
    width: 80%;
    left: 50%;
  }

  /* トップナビ  コンタクト*/
  .top_globalnav_contact {
    background-color: #103292;
    border: none;
  }

  .top_globalnav_contact a {
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
  }

  /* トップナビ  コンタクト　ホバー*/

  .top_globalnav_contact:hover a {
    color: #fff;
  }

  .top_globalnav_contact:hover {
    background-color: #103292;
    border: none;
  }

  .top_globalnav_contact {
    position: relative;
  }

  .top_globalnav_contact .top_globalnav_flex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
  }

  .top_globalnav_contact:hover .top_globalnav_flex::before {
    width: 80%;
    left: 50%;
  }
}

/* ------------------------ //トップナビ  ------------------------ */


/* ------------------------ 　共通見出し  ------------------------ */
.section_title {
  color: #103292;
  font-size: 5rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 50px;
}

.section_title_ruby {
  font-size: 2rem;
  color: #707070;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.section_title_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  font-size: 6rem;
}

/* ------------------------ 　//共通見出し ------------------------ */


/* ------------------------ 　/ふわっと表示 ------------------------ */
#concept,
#works,
.works_case,
.plan_access {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

#concept.show,
#works.show,
.works_case.show,
.plan_access.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* ------------------------ 　//ふわっと表示 ------------------------ */


/* ------------------------ 　スクロールテキストアニメーション  ------------------------ */

/* パララックス */
/* 左側 */
#text_left {
  z-index: -1;
  position: fixed;
  bottom: 0;
  left: 4.5vw;
  pointer-events: none;
  transform: translate(-100%, -50%) rotate(-90deg);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(0, 60, 88, 0.05);
  white-space: nowrap;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  opacity: 0;
  filter: blur(100px);
  transition: 1s ease-in-out opacity, 1s ease-in-out filter, 1s ease-in-out transform, .75s .1s ease-in-out bottom;
}

#text_left.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) rotate(-90deg);
}


@keyframes fadein-text-left {
  0% {
    opacity: 0;
    filter: blur(100px);
    transform: translate(-100%, -50%) rotate(-90deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@media screen and (min-width: 768px) {
  #text_left {
    font-size: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  #text_left {
    font-size: 15rem;
  }
}

/* 右側 */
#text_right {
  z-index: -1;
  position: fixed;
  top: 0;
  right: 4.5vw;
  pointer-events: none;
  transform: translate(100%, 50%) rotate(90deg);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(0, 60, 88, 0.05);
  white-space: nowrap;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  opacity: 0;
  filter: blur(100px);
  transition: 1s ease-in-out opacity, 1s ease-in-out filter, 1s ease-in-out transform, .75s .1s ease-in-out top;
}

#text_right.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(50%, 50%) rotate(90deg);
}

@keyframes fadein-text-right {
  0% {
    opacity: 0;
    filter: blur(100px);
    transform: translate(100%, 50%) rotate(90deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(50%, 50%) rotate(90deg);
  }
}

@media screen and (min-width: 768px) {
  #text_right {
    font-size: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  #text_right {
    font-size: 15rem;
  }
}

/* ------------------------ メインビジュアル  ------------------------ */
#main_visual {
  position: relative;
  margin-top: 85px;
}

#main_visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(common/images/sp_main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 100%;
  height: 80vh;
}

@media (min-width: 768px) {
  #main_visual::before {
    background: url(common/images/main.jpg);
    background-size: cover;
    width: 85%;
    height: 80vh;
  }
}

.main_text {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .main_text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.main_copy {
  color: #fff;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.8rem;
  line-height: 2.4;
  letter-spacing: 2px;
  padding: 25vh 0 0;
}

@media screen and (min-width: 768px) {
  .main_copy {
    font-size: 6rem;
    padding: 10vh 0 0;
    line-height: 2.2;
  }
}

.copy_1,
.copy_2 {
  background-color: #103292;
  padding: 10px;
}

@media screen and (min-width: 768px) {

  .copy_1,
  .copy_2 {
    padding: 20px;
  }
}

.sub_copy {
  color: #707070;
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  line-height: 2;
  font-size: 1.3rem;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .sub_copy {
    color: #707070;
    background-color: #fff;
    font-size: 2rem;
    text-shadow: none;
  }
}

/* ------------------------ //メインビジュアル  ------------------------ */


/* ------------------------ コンセプト  ------------------------ */
#concept {
  width: 90%;
  margin-top: 35vh;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  #concept {
    margin-top: 40vh;
  }
}

.concept_box {
  display: block;
  padding: 0;
}

@media (min-width: 1200px) {
  .concept_box {
    display: flex;
  }
}

.concept_box img {
  width: 80px;
  height: auto;
  display: block;
  margin: 15px auto;
}

@media (min-width: 768px) {
  .concept_box img {
    width: 100px;
    margin: 30px auto;
  }
}

.concept_item {
  width: 90%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  list-style: none;
  border: solid 1px #707070;
  background-color: #fff;
  color: #707070;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .concept_item {
    font-size: 1.8rem;
  }
}

@media (min-width: 1200px) {
  .concept_item {
    width: 30%;
    margin-bottom: 0;
    font-size: 1.8rem;
    margin-bottom: 0px;
  }
}

.concept_point {
  background: #103292;
  color: #fff;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  padding: 3px 0;
  width: 200px;
}

@media (min-width: 768px) {
  .concept_point {
    font-size: 2.5rem;
  }
}

.concept_subheading {
  color: #707070;
  font-size: 2rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 20px;
  text-wrap: nowrap;
}

@media (min-width: 480px) {
  .concept_subheading {
    text-wrap: wrap;
  }
}

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

/* ------------------------ //コンセプト  ------------------------ */


/* ------------------------ 制作実績  ------------------------ */
#works {
  width: 90%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  #works {
    width: 80%;
  }
}

.works_summary {
  font-size: 1.5rem;
  color: #707070;
  text-align: center;
  line-height: 2;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .works_summary {
    font-size: 1.8rem;
    width: 100%;
  }
}


/* 制作実績 */
.works_case {
  margin-top: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .works_case {
    margin-top: 100px;
  }
}

@media (min-width: 1200px) {
  .works_case {
    margin-top: 70px;
    display: flex;
    justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .works_case:nth-child(even) {
    flex-flow: row-reverse;
  }
}

.works_case img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1200px) {
  .works_case img {
    width: 60%;
    height: auto;
  }
}

.works_case_text {
  color: #707070;
  text-align: center;
  margin-top: 30px;
}

.company_name {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .company_name {
    font-size: 3rem;
  }
}

.honorific {
  font-size: 2rem;
}

.category {
  list-style: none;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.category_item {
  border: solid 1px #707070;
  border-radius: 20px;
  padding: 0 20px;
  margin: 0 10px;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .category_item {
    font-size: 1.8rem;
  }
}

/* 会社　リンク */
.company_link {
  color: #103292;
  text-decoration: none;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .company_link {
    font-size: 1.8rem;
  }
}

.bi-box-arrow-up-right {
  margin-left: 5px;
  color: #103292;
}

/* 会社　リンク ホバー*/
.company_link:hover {
  text-decoration: underline;
}

/* 詳しく見る ボタン */
.more_button {
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*ボタンアニメーション*/
}

.more_button a {
  color: #fff;
  text-decoration: none;
  background-color: #103292;
  padding: 10px 15px;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .more_button a {
    padding: 15px 20px;
    font-size: 1.8rem;
  }
}


.bi-chevron-right {
  color: #fff;
  margin-left: 10px;
}

/* 詳しく見る ボタン ホバー*/
.more_button:hover {
  transform: scale(1.1);
}

.more_button:active {
  transform: scale(1.05);
}



/* 制作実績一覧 ボタン */
.works_button {
  margin-top: 70px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*ボタンアニメーション*/
}

.works_button a {
  color: #103292;
  text-decoration: none;
  background-color: #fff;
  border: solid 1px #103292;
  padding: 15px;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .works_button a {
    padding: 25px;
    font-size: 1.8rem;
  }
}

.works_button:hover {
  transform: scale(1.1);
  /*ボタンアニメーション*/
}

.works_button:active {
  transform: scale(1.05);
  /*ボタンアニメーション*/
}

.works_button .bi {
  color: #103292;
}

/* ------------------------ //制作実績  ------------------------ */


/* ------------------------ 料金プラン・アクセス  ------------------------ */
.plan_access {
  width: 90%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .plan_access {
    display: flex;
  }
}

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

#plan,
#access {
  position: relative;
}

/* リンク */
.plan_access_box {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(3rem, calc(2vw*1.6), 5rem);
  text-decoration: none;
  color: #103292;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}

.plan_access_title_flex {
  pointer-events: none;
}

/* リンク ホバー */
.plan_access_box img {
  transition: filter 0.4s ease;
}

.plan_access_box img:hover {
  filter: brightness(50%);
}

.plan_access_box:hover {
  color: #fff;
}

.plan_access_box:hover .plan_access_title_ruby {
  color: #fff;
}

.plan_access_box:hover .bi-chevron-right {
  color: #fff;
}

/* //リンク ホバー */

.plan_access_title_ruby {
  color: #707070;
  font-size: clamp(1.5rem, calc(2vw*1.6), 2rem);
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.plan_access_title_flex {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.plan_access_box .bi-chevron-right {
  color: #103292;
}

/* ------------------------ //料金プラン・アクセス  ------------------------ */


/* ------------------------ ページトップ ------------------------ */
footer {
  position: relative;
}

.pagetop {
  position: fixed;
  right: 1%;
  bottom: 0;
  z-index: 2;
}

.pagetop:hover {
  opacity: 60%;
}

.bi-chevron-double-up {
  font-size: 3rem;
  color: #fff;
  background-color: #103292;
  padding: 2px 6px;
  border: solid 1px #fff;
}

@media (min-width: 768px) {
  .bi-chevron-double-up {
    font-size: 5rem;
  }
}

/* ------------------------ //ページトップ ------------------------ */


/* ------------------------ フッターお問い合わせ ------------------------ */
.footer_contact {
  margin-top: 100px;
  background: url(common/images/contact.jpg);
  width: 100%;
  background-size: cover;
  padding: 60px 0;
}

.footer_contact_subheading {
  color: #fff;
  font-size: 2.5rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .footer_contact_subheading {
    font-size: 3.5rem;
  }
}

/* コンタクト 電話・フォーム*/
.footer_contact_text {
  font-size: 1.8rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media (min-width: 1200px) {
  .footer_contact_flex {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_contact_item {
  background-color: #fff;
  width: 80%;
  border-radius: 20px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer_contact_item {
    padding: 40px 30px;
    width: 60%;
  }
}

@media (min-width: 1200px) {
  .footer_contact_item {
    width: 40%;
    padding: 40px 50px;
    margin-top: 20px;
  }
}

.footer_contact_item a {
  text-decoration: none;
}

/* PC版電話のリンクの見た目 */
a.linkMute, a .linkMute:hover {
  border-bottom: none !important;
  cursor: default !important;
}

.tell_subheading {
  color: #103292;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .tell_subheading {
    font-size: 2.5rem;
  }
}

.tell {
  color: #103292;
  font-size: 2.5rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: solid 2px #103292;
}

@media (min-width: 768px) {
  .tell {
    font-size: 3rem;
  }
}

.tell_description {
  margin-top: 10px;
  color: #103292;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .tell_description {
    font-size: 1.8rem;
  }
}

.notes {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #707070;
}

@media (min-width: 768px) {
  .notes {
    font-size: 1.5rem;
  }
}

.contact_description {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #103292;
  line-height: 2;
}

@media (min-width: 768px) {
  .contact_description {
    font-size: 1.8rem;
  }
}

.tell_subheading .bi-telephone-fill {
  margin-right: 8px;
}

/* コンタクト フォーム リンク*/
.contact_link {
  background-color: #103292;
  border-radius: 20px;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.8rem;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*ボタンアニメーション*/
}

@media (min-width: 768px) {
  .contact_link {
    font-size: 2.5rem;
  }
}

.contact_link .bi-envelope-fill {
  margin-right: 10px;
}

.contact_link:hover {
  transform: scale(1.05);
  /*ボタンアニメーション*/
}

.contact_link:active {
  transform: scale(1.05);
  /*ボタンアニメーション*/
}


/* ------------------------ //フッターお問い合わせ ------------------------ */


/* ------------------------ フッターナビ ------------------------ */
/* モバイル版は消す */
.sp_none {
  display: none;
}

@media (min-width: 1200px) {
  .sp_none {
    display: block;
  }
}

.footer_nav {
  background-color: #103292;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .footer_nav {
    padding: 50px 0;
  }
}

@media (min-width: 1200px) {
  .footer_box {
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 50px
  }
}

.nav_box {
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) {
  .nav_box {
    display: flex;
  }
}

.footer_nav_item {
  list-style: none;
  font-size: 1.5rem;
  padding: 10px 30px;
}

.footer_nav_item a {
  color: #fff;
  text-decoration: none;
}

/* リンク ホバー */
.footer_nav_item a:hover {
  text-decoration: underline;
}

/* 会社ロゴ・コーポレートサイト */
address {
  margin-top: 10px;
}

@media (min-width: 768px) {
  address {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  address {
    margin-top: 0;
  }
}

.footer_logo_site {
  text-align: center;
}

@media (min-width: 768px) {
  .footer_logo_site {
    text-align: center;
    margin-right: 30px;
  }
}

.footer_logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer_logo {
    width: 200px;
  }
}

.corporate_site {
  padding: 5px 25px;
  color: #fff;
  border: solid 1px #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.5rem;
}

.corporate_site:hover {
  transform: scale(1.1);
  background-color: #fff;
  color: #103292;
}

.corporate_site:hover .bi-box-arrow-up-right {
  color: #103292;
}

.corporate_site_text {
  color: #fff;
  font-size: 1.5rem;
}

.corporate_site .bi-box-arrow-up-right {
  color: #fff;
}


/* 会社所在地 */
.company_location {
  margin-top: 40px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .company_location {
    margin-top: 0;
    text-align: left;
    font-size: 1.5rem;
    line-height: 2.5;
  }
}

/* ------------------------ //フッターナビ ------------------------ */


/* ------------------------ コピーライト ------------------------ */
.copyright {
  background-color: #707070;
  padding: 10px 0;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .copyright {
    padding: 20px 0;
    font-size: 1.3rem;
  }
}

/* ------------------------ //コピーライト ------------------------ */